-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 948 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 948 Bytes
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
{
"name": "webpack-helloworld",
"version": "1.0.0",
"private": true,
"description": "",
"scripts": {
"build": "webpack",
"lint": "eslint ./client ./webpack.config.js -f table || true"
},
"license": "MIT",
"devDependencies": {
"babel-core": "6.16.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.7",
"babel-plugin-transform-class-properties": "6.22.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.22.0",
"babel-preset-react-hmre": "1.1.1",
"css-loader": "0.14.5",
"eslint": "3.14.0",
"eslint-config-airbnb": "14.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"file-loader": "0.8.5",
"style-loader": "0.13.1",
"webpack": "2.2.0"
},
"dependencies": {
"babel-runtime": "6.22.0",
"lodash": "^4.17.4",
"moment": "^2.18.1"
}
}