-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·30 lines (30 loc) · 818 Bytes
/
package.json
File metadata and controls
executable file
·30 lines (30 loc) · 818 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
28
29
30
{
"name": "ModernTree.JS",
"version": "1.0.0",
"description": "Get going with your dev tools!",
"main": "index.js",
"scripts": {
"dev": "webpack -d --watch",
"dev-server": "webpack-dev-server --progress --colors --output-public-path=/dist/",
"production": "webpack -p"
},
"author": "Bart Jan van Assen",
"license": "Mine",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-runtime": "6.11.6",
"css-loader": "^0.23.1",
"file-loader": "^0.9.0",
"node-sass": "^3.8.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"json-loader": "^0.5.4"
}
}