-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "cem-admin",
"version": "0.1.0",
"private": true,
"homepage": "http://acm-dtu.appspot.com",
"engines": {
"node": "8.x"
},
"dependencies": {
"apisauce": "^0.14.1",
"aws-sdk": "^2.153.0",
"enzyme": "^3.1.0",
"faker": "^4.1.0",
"font-awesome": "^4.7.0",
"graphql": "0.10.5",
"lodash": "^4.17.4",
"material-ui": "^0.19.4",
"moment": "2.19.1",
"node-sass-chokidar": "0.0.3",
"prop-types": "^15.6.0",
"qs": "^6.5.2",
"react": "^16.0.0",
"react-alert": "^2.4.0",
"react-apollo": "^1.4.15",
"react-big-calendar": "^0.16.1",
"react-dom": "^16.0.0",
"react-flexbox-grid": "^1.1.5",
"react-google-maps": "^9.2.1",
"react-helmet": "^5.2.0",
"react-icons": "^2.2.7",
"react-load-script": "0.0.6",
"react-rating": "^1.1.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.14",
"react-slick": "^0.16.0",
"react-swipeable-views": "^0.12.8",
"react-table": "^6.7.4",
"react-test-renderer": "^16.0.0",
"redux": "^3.7.2",
"redux-form": "^7.1.1",
"redux-thunk": "^2.2.0",
"subscriptions-transport-ws": "0.8.3"
},
"scripts": {
"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",
"start-js": "react-scripts start",
"dev": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"eject": "react-scripts eject",
"lint-staged": "lint-staged",
"precommit": "npm-run-all lint-staged",
"start": "serve -s build",
"prestart": "npm install -g serve",
"postinstall": "cp -r lib/* node_modules/ && cp .env.heroku.example .env && npm run build"
},
"devDependencies": {
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"npm-run-all": "^4.1.1",
"prettier": "^1.7.4",
"prettier-eslint": "^8.2.1"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
}
}