-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 784 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 784 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
{
"name": "ambrockets",
"version": "0.1.0",
"description": "Ambrockets with Amber",
"private": true,
"author": "Amber",
"license": "MIT",
"scripts": {
"build": "webpack --config config/webpack/development.js",
"watch": "webpack -w --config config/webpack/development.js",
"release": "webpack -p --config config/webpack/production.js",
"test": "echo \"No test specified\" && exit 1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.7",
"file-loader": "^1.1.5",
"node-sass": "^4.6.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.1",
"extract-text-webpack-plugin": "^3.0.2"
}
}