-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.43 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
{
"name": "drimsim-front",
"version": "0.1.0",
"private": true,
"dependencies": {
"apollo-boost": "0.1.18",
"apollo-server-express": "2.1.0",
"express": "4.16.4",
"graphql": "14.0.2",
"graphql-tag": "2.10.0",
"gsap": "2.0.2",
"react": "16.6.0",
"react-apollo": "2.2.4",
"react-app-rewire-hot-loader": "1.0.3",
"react-app-rewired": "1.6.2",
"react-dom": "16.6.0",
"react-hot-loader": "4.3.11",
"react-router-dom": "4.3.1",
"react-scripts": "2.0.5",
"styled-components": "4.0.2",
"styled-normalize": "8.0.3"
},
"scripts": {
"start": "node --experimental-modules server.mjs",
"dev": "react-app-rewired start",
"build": "react-app-rewired build && rm -rf user_app | mv build user_app",
"eject": "react-scripts eject",
"stylelint": "stylelint ./src/**/*.js",
"prettier": "prettier --write {src,server}/**/*.{mjs,js}",
"lint": "npm run prettier && npm run stylelint",
"heroku-postbuild": "npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"stylelint": "9.6.0",
"stylelint-config-recommended": "2.1.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-declaration-block-no-ignored-properties": "1.1.0",
"stylelint-order": "1.0.0",
"stylelint-processor-styled-components": "1.5.0"
}
}