-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 2.08 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
{
"name": "pr-ci-dashboard",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:5000/",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"font-awesome-sass": "^4.7.0",
"node-fetch": "^2.3.0",
"openshift-rest-client": "2.2.0",
"patternfly": "^3.59.3",
"patternfly-react": "^2.29.9",
"prop-types": "^15.7.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.3"
},
"scripts": {
"build-css": "node-sass-chokidar src/ --output-style compressed --include-path src --include-path node_modules/patternfly-react/dist/sass --include-path node_modules/patternfly/dist/sass --include-path node_modules/bootstrap-sass/assets/stylesheets --include-path node_modules/font-awesome-sass/assets/stylesheets -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ --output-style compressed --include-path src --include-path node_modules/patternfly-react/dist/sass --include-path node_modules/patternfly/dist/sass --include-path node_modules/bootstrap-sass/assets/stylesheets --include-path node_modules/font-awesome-sass/assets/stylesheets -o src/ --watch --recursive",
"server": "nodemon server/server.js",
"start-js": "react-scripts start",
"ui": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"debug": "concurrently --kill-others-on-fail \"npm run server\" \"npm run ui\"",
"start": "node ./server/server.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"concurrently": "^4.1.0",
"cross-var": "^1.1.0",
"bootstrap-sass": "^3.3.7",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.10",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}