-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "driftrock-webpack-config-parts",
"version": "0.0.1",
"description": "Common parts for webpack config",
"main": "dist-modules/index.js",
"scripts": {
"start": "nodemon --watch app/development.webpack.config.js --exec \"webpack-dev-server --config app/development.webpack.config.js\"",
"build": "webpack --config app/production.webpack.config.js",
"lint:js": "eslint app/ --cache",
"build:npm": "webpack"
},
"keywords": [],
"author": "kocur4d <[email protected]> www.driftrock.com",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"css-loader": "^0.28.5",
"eslint": "^4.4.1",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {},
"files": [
"src/"
]
}