-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^3.4.1",
"chessboardjs": "^0.0.1",
"express": "^4.16.3",
"immutable": "^3.8.2",
"node-schedule": "^1.3.0",
"normalize.css": "^8.0.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-scripts-ts": "^2.15.1",
"redis": "^2.8.0",
"shortid": "^2.2.8",
"socket.io": "^2.1.0",
"socket.io-client": "^2.1.0"
},
"scripts": {
"start": "react-scripts-ts start",
"server": "server/index.js",
"nodemon": "nodemon server/index.js",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"create:component": "./node_modules/hygen/lib/bin.js component create",
"create:store:item": "./node_modules/hygen/lib/bin.js store create",
"heroku-postbuild": "yarn run build"
},
"jest": {
"moduleNameMapper": {
"^react-native$": "react-native-web",
"@App/(.*)": "<rootDir>/src/$1"
}
},
"devDependencies": {
"@types/history": "^4.6.2",
"@types/jest": "^22.2.2",
"@types/node": "^9.6.2",
"@types/react-dom": "^16.0.4",
"typescript": "^2.8.1"
},
"engines": {
"node": "v10.13.0",
"npm": "6.4.1"
}
}