-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.56 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
48
49
50
51
52
53
54
55
56
57
{
"name": "genetic-algorithm-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "vitest",
"test:ci": "vitest run",
"coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "2.4.9",
"@tensorflow/tfjs": "4.2.0",
"framer-motion": "^8.5.4",
"next": "13.1.5",
"phaser": "3.60.0-beta.10",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@playwright/test": "^1.30.0",
"@testing-library/react": "^13.4.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@vitejs/plugin-react": "^3.0.1",
"eslint": "8.32.0",
"eslint-config-next": "13.1.5",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"resize-observer-polyfill": "^1.5.1",
"typescript": "4.9.4",
"uuid": "^9.0.0",
"vitest": "^0.28.3",
"vitest-canvas-mock": "^0.2.2"
},
"engines": {
"node": "^18"
}
}