-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ant-colony-simulation",
"version": "0.0.10",
"description": "Ant colony simulation with TypeScript and p5.js",
"homepage": "https://hasnainroopawalla.github.io/ant-colony-simulation",
"private": true,
"scripts": {
"start": "webpack serve --open",
"build": "webpack",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.1",
"@types/p5": "^1.6.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"css-loader": "^6.8.1",
"eslint": "^8.48.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"p5": "^1.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}