-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "web-app-template",
"version": "2.0.0",
"description": "Starting point for es6 projects.",
"scripts": {
"build": "node node_modules/webpack/bin/webpack.js",
"watch": "node node_modules/webpack/bin/webpack.js --watch",
"server": "node_modules/nodemon/bin/nodemon.js server/build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmptable/web-app-template.git"
},
"author": "Owen Trueblood",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmptable/web-app-template/issues"
},
"homepage": "https://github.com/jmptable/web-app-template#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.12.5",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.5.4",
"babel-preset-env": "^1.6.1"
},
"dependencies": {
"express": "^4.16.2",
"winston": "^2.4.0"
}
}