-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
{
"name": "starterkit-django-webpack",
"version": "0.0.1",
"private": true,
"description": "Starter kit for Django, webpack, npm build scripts and starter deployment configs.",
"scripts": {
"lint": "esw --color",
"lint:watch": "npm run lint -s -- --watch",
"nsp": "nsp check",
"ngrok": "ngrok http 8000",
"build": "babel-node npm_scripts/buildProduction.js",
"predev": "npm-run-all -s nsp lint",
"dev": "webpack-dev-server --config webpack.config.local.babel.js"
},
"author": "Martin Gingras",
"license": "MIT",
"dependencies": {
"babel-cli": "6.24.0",
"babel-core": "6.24.0",
"babel-loader": "6.4.1",
"babel-preset-env": "1.2.2",
"babel-register": "6.24.0",
"chalk": "1.1.3",
"css-loader": "0.27.3",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.10.1",
"style-loader": "0.16.1",
"uglify-js-harmony": "2.7.5",
"url-loader": "0.5.8",
"webpack": "2.3.2",
"webpack-bundle-tracker": "0.2.0",
"webpack-uglify-harmony": "1.0.0"
},
"devDependencies": {
"eslint": "3.18.0",
"eslint-config-airbnb-base": "11.1.2",
"eslint-plugin-import": "2.2.0",
"eslint-watch": "3.0.1",
"ngrok": "2.2.6",
"npm-run-all": "4.0.2",
"nsp": "2.6.3",
"webpack-dev-server": "2.4.2"
}
}