-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 952 Bytes
/
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
{
"name": "browser_craft",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.5",
"html-webpack-plugin": "^2.30.1",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"start": "cross-env NODE_ENV=development webpack-dev-server --progress --devtool eval",
"start:preprod": "cross-env NODE_ENV=development webpack-dev-server --progress --devtool inline-source-map",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Reno McKenzie",
"license": "ISC",
"dependencies": {
"lz-string": "^1.4.4"
}
}