-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.81 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "quarantined_wizzards",
"version": "1.0.0-beta.1",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.9",
"@material-ui/icons": "^4.9.1",
"@storybook/addon-docs": "^6.0.0-beta.26",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/express": "^4.17.6",
"@types/ioredis": "^4.14.9",
"@types/jest": "^24.9.1",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.isnil": "^4.0.6",
"@types/lodash.update": "^4.10.6",
"@types/node": "^12.12.35",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-swipeable-views-utils": "^0.13.2",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"express": "^4.17.1",
"get-port": "^5.1.1",
"http": "0.0.1-security",
"immer": "^6.0.3",
"ioredis": "^4.16.2",
"lodash.isequal": "^4.5.0",
"lodash.isnil": "^4.0.0",
"lodash.update": "^4.10.2",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"react-swipeable-views": "^0.13.9",
"react-swipeable-views-core": "^0.13.7",
"react-swipeable-views-utils": "^0.13.9",
"shortid": "^2.2.15",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"typescript": "^3.9.5"
},
"scripts": {
"start": "npm run start:server",
"heroku-postbuild": "npm run build && npm run build:server",
"start:client": "react-scripts start",
"build": "react-scripts build",
"build:server": "tsc --project tsconfig.server.json",
"build:server:dev": "tsc --project tsconfig.server.json --watch",
"test:server": "NODE_ENV=test jest --config config/jest.config.js --detectOpenHandles --forceExit",
"start:server": "node dist/server/main.js",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public --ci",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@storybook/addon-actions": "^6.0.0-beta.26",
"@storybook/addon-links": "^6.0.0-beta.26",
"@storybook/addons": "^6.0.0-beta.26",
"@storybook/preset-create-react-app": "^3.0.1",
"@storybook/react": "^6.0.0-beta.26",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"babel-loader": "^8.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"get-port": "^5.1.1",
"jest-circus": "^25.3.0",
"ts-jest": "^25.3.1"
}
}