-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "spockfish",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"typecheck": "tsc --noEmit --incremental --preserveWatchOutput --pretty",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch --maxWorkers=25% --config=jest.config.js",
"test-fast": "jest --watch --maxWorkers=25% --config=jest-fast.config.js",
"test-ci": "jest --verbose --ci --runInBand --config=jest.config.js"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.6",
"@react-css/flex": "^1.5.0",
"@react-three/fiber": "^7.0.17",
"comlink": "^4.3.1",
"next": "^12.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.43.4",
"use-sound": "^4.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"@types/three": "^0.133.1",
"babel-jest": "^27.3.1",
"eslint": "7.32.0",
"eslint-config-next": "12.0.1",
"file-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.7",
"typescript": "4.4.4"
}
}