-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.78 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.78 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
{
"scripts": {
"dev": "NODE_ENV=development HOT=1 webpack-dev-server --hot",
"build": "NODE_ENV=production webpack",
"test": "eslint src",
"format": "prettier-eslint src/**/*.js"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/polyfill": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"@babel/preset-stage-0": "^7.0.0-beta.46",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.0-beta",
"babel-plugin-react-css-modules": "^3.4.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.1.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"postcss-scss": "^1.0.5",
"prettier-eslint-cli": "^4.7.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-hot-middleware": "^2.22.1"
},
"dependencies": {
"apollo-boost": "^0.1.6",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"monaco-editor": "^0.13.1",
"monaco-editor-webpack-plugin": "^1.3.0",
"react": "^16.3.2",
"react-apollo": "^2.1.4",
"react-dom": "^16.3.2",
"react-hot-loader": "^4.1.3",
"react-monaco-editor": "^0.17.2",
"react-router-dom": "^4.2.2"
}
}