-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
92 lines (92 loc) · 2.47 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
{
"name": "janus-dashboard",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.1",
"bem-cn": "^2.1.3",
"history": "^4.10.1",
"js-beautify": "^1.13.0",
"jsonwebtoken": "^8.0.1",
"node-sass-chokidar": "^1.5.0",
"ramda": "^0.24.1",
"react": "^16.13.1",
"react-ace": "^5.9.0",
"react-bubble-preloader": "^1.3.2",
"react-dom": "^16.13.1",
"react-history": "^0.18.2",
"react-modaliz": "^0.1.2",
"react-pagimagic": "^1.4.0",
"react-redux": "^5.1.2",
"react-router-dom": "^4.1.1",
"react-router-redux": "next",
"react-scripts": "^3.4.3",
"react-select": "^1.0.0-rc.5",
"react-sticky-el": "^1.1.1",
"redux": "^3.6.0",
"redux-form": "^6.8.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"assert": "^1.4.1",
"cypress": "^5.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"jest-enzyme": "^7.1.2",
"npm-run-all": "^4.0.2",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"prop-types": "^15.5.10",
"redux-logger": "^3.0.6",
"standard": "^11.0.0",
"stylelint": "^13.6.1"
},
"scripts": {
"start": "PORT=8082 npm-run-all -p watch-css start-js",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"lint": "./node_modules/.bin/standard && stylelint '**/*.scss'",
"lint-fix": "./node_modules/.bin/standard --fix && stylelint '**/*.scss' --fix",
"start-js": "react-scripts start",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:acceptance": "CYPRESS_numTestsKeptInMemory=50 cypress run",
"test:acceptance-dev": "CYPRESS_numTestsKeptInMemory=50 cypress open",
"eject": "react-scripts eject"
},
"standard": {
"globals": [
"actor",
"Before",
"Feature",
"Helper",
"Scenario",
"within",
"FileReader"
],
"ignore": [
"public",
"tests"
],
"parser": "babel-eslint"
},
"pre-commit": [
"lint-fix"
],
"pre-push": [
"lint"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}