-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
37
38
{
"name": "ngui",
"version": "1.0.0",
"description": "",
"main": "dist/ngui.min.js",
"scripts": {
"postinstall": "npm run build",
"start": "webpack-dev-server --config webpack.dev.js --progress --colors",
"build": "webpack -p --config webpack.production.js --progress --colors",
"build:css": "webpack -p --config webpack.css.js --progress --colors && rm 'dist/deleteme.js'"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"angular": "^1.5.10",
"angular-touch": "^1.5.10",
"babel-core": "6.22.1",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.22.0",
"css-loader": "0.26.1",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"ignore-loader": "0.1.2",
"ng-annotate-webpack-plugin": "0.2.1-pre",
"raw-loader": "0.5.1",
"style-loader": "0.13.1",
"webpack": "2.2.0"
},
"devDependencies": {
"node-sass": "^4.5.2",
"sass-loader": "^6.0.3",
"webpack": "^2.2.0",
"webpack-dev-server": "2.2.0"
},
"peerDependencies": {
"angular": "^1.5.10"
}
}