This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.66 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
{
"name": "rablabla-frontend",
"version": "0.0.3",
"private": true,
"dependencies": {
"@material-ui/core": "^1.2.0",
"@material-ui/icons": "^1.1.0",
"acorn": "^6.4.1",
"ajv": "^6.5.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint-config-react-app": "^5.0.2",
"jquery": "^3.4.1",
"material-ui-pickers": "1.0.0-rc.10",
"moment": "^2.22.2",
"prop-types": "^15.6.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-dotdotdot": "^1.2.3"
},
"devDependencies": {
"babel-eslint": "^10.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"npm-run-all": "^4.1.5",
"react-scripts": "^3.2.0"
},
"scripts": {
"start-js": "react-scripts start",
"start": "./node_modules/.bin/npm-run-all -p sass start-js",
"build-js": "react-scripts build",
"build": "./node_modules/.bin/npm-run-all -p sass-production build-js",
"test": "CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"cleanup": "rm -rf node_modules && npm i",
"sass": "sass --watch src/styles/scss:src/styles/css",
"sass-production": "sass --update src/styles/scss:src/styles/css",
"sass:build": "sass — update src/styles/scss:src/styles/css",
"deploy": "git pull && docker stop rablabla-frontend || docker rm rablabla-frontend || true && docker build -t rablabla-frontend . && docker run -p 9003:5000 --name rablabla-frontend -d rablabla-frontend:latest"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}