-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 KB
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
{
"name": "sinnott-webclient",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start-dev": "concurrently \"yarn watch-css\" \"yarn start-js\"",
"build": "yarn build-css && yarn build-js",
"pretest": "yarn build",
"test": "echo \"Starting webclient tests\" && react-scripts test --env=jsdom --coverage",
"build-js": "react-scripts build",
"start-js": "react-scripts start",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "yarn build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive"
},
"prepare": "",
"author": "",
"license": "ISC",
"dependencies": {
"array.prototype.includes": "^1.0.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.6.1",
"history": "^4.10.1",
"marked": "^0.7.0",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.4",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-loadable": "^5.5.0",
"react-md": "^1.12.3",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.3.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"string-includes-polyfill": "^1.0.1",
"string.prototype.repeat": "^0.2.0",
"url-search-params-polyfill": "^7.0.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"concurrently": "^5.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"http-proxy-middleware": "^0.20.0",
"node-sass-chokidar": "^1.4.0",
"react-scripts": "^3.2.0",
"react-test-renderer": "^16.5.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
]
}