-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
{
"name": "ping-ponguin-react-app",
"author": {
"name": "Max Becker",
"email": "[email protected]"
},
"version": "0.1.0",
"proxy": "http://localhost:3333",
"private": true,
"dependencies": {
"bcrypt": "^3.0.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.7.6",
"prop-types": "^15.7.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.1.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"styled-components": "^5.0.0-beta.9",
"styled-icons": "^8.6.0",
"use-socket.io-client": "^1.0.4"
},
"scripts": {
"start": "run-p server dev",
"server": "nodemon server/server.js",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"cypress": "cypress open",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:cypress/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babelMacros": {
"styledComponents": {
"pure": true
}
},
"devDependencies": {
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1",
"cypress": "^3.5.0",
"eslint-plugin-cypress": "^2.7.0",
"nodemon": "^1.19.3",
"npm-run-all": "^4.1.5",
"storybook-react-router": "^1.0.8"
}
}