-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.96 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@oddx/pubsub": "git://github.com/tuhuynh27/pubsub.git#b534e5117d2b078301a2cc198eb20796516975da",
"@reduxjs/toolkit": "^1.4.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"acorn": "^7.1.1",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"color": "^3.1.2",
"formik": "^2.1.5",
"gsap": "^3.5.1",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"node-sass": "^4.13.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-beautiful-dnd": "^13.0.0",
"react-css-modules": "^4.7.11",
"react-dom": "^16.13.0",
"react-html-parser": "^2.0.2",
"react-redux": "^7.2.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"react-transition-group": "^4.4.1",
"slugify": "^1.4.4",
"socket.io-client": "^2.3.0",
"socket.io-mock": "^1.3.0",
"styled-components": "^5.1.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/color": "^3.0.1",
"@types/http-proxy-middleware": "^0.19.3",
"@types/lodash": "^4.14.161",
"@types/prop-types": "^15.7.3",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.5",
"@types/react-transition-group": "^4.4.0",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"http-proxy-middleware": "^1.0.3",
"husky": "^4.2.5",
"prettier": "1.13.5",
"standard": "^14.3.4"
},
"scripts": {
"dev": "REACT_APP_NODE_ENV=development react-scripts start",
"alpha": "REACT_APP_NODE_ENV=alpha react-scripts start",
"staging": "REACT_APP_NODE_ENV=staging react-scripts start",
"build": "DISABLE_ESLINT_PLUGIN=true REACT_APP_NODE_ENV=production GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test",
"test:coverage": "react-scripts test --coverage",
"lint": "standard",
"lint:fix": "standard --fix",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"standard": {
"ignore": [
"build/*"
],
"env": [
"jest",
"es6",
"browser"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "CI=true yarn test:coverage"
}
}
}