-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
{
"name": "inkurz",
"version": "0.1.0",
"proxy": "http://localhost:3333",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.9.2",
"gravatar": "^1.8.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"moment": "^2.29.1",
"mongoose": "^5.11.15",
"node-fetch": "^2.6.1",
"node-schedule": "^2.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.2",
"redux": "^4.0.5",
"styled-components": "^5.2.1",
"styled-icons": "^10.27.0"
},
"scripts": {
"start": "run-p server dev",
"server": "nodemon src/server/server.js",
"dev": "react-scripts start",
"scheduler": "nodemon src/server/routes/newsAPIRoute.js",
"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"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.1.19",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.1.15",
"@storybook/addons": "^6.1.19",
"@storybook/react": "^6.1.16",
"cypress": "^6.4.0",
"eslint-plugin-cypress": "^2.11.2"
}
}