-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "cube-draft",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "16.7.0",
"react-dom": "16.7.0",
"react-scripts": "2.1.3"
},
"scripts": {
"eject": "react-scripts eject",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"prebuild": "yarn build-css",
"build": "react-scripts build && cp ./build_support/* ./build/",
"start-js": "react-scripts start",
"prestart": "sudo apachectl start",
"start": "HOST=cube-draft.localhost.dev npm-run-all -p watch-css start-js",
"pretest": "yarn build-css",
"test": "yarn test:e2e && yarn test:unit",
"test:unit": "babel-node spec/run.js",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open"
},
"devDependencies": {
"@babel/polyfill": "^7.2.5",
"axios": "0.18.0",
"babel": "6.23.0",
"babel-cli": "6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "^6.24.1",
"classnames": "2.2.6",
"cypress": "3.1.4",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.7.1",
"ignore-styles": "5.0.1",
"jasmine": "3.3.1",
"jasmine-enzyme": "7.0.1",
"jasmine-spec-reporter": "4.2.1",
"jsdom": "13.1.0",
"nock": "10.0.6",
"node-sass": "4.11.0",
"node-sass-chokidar": "1.3.4",
"npm-run-all": "4.1.5",
"prop-types": "15.6.2",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"wait-on": "3.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}