-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.58 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ShapeConnector",
"version": "1.2.0",
"main": "app/app.module.coffee",
"scripts": {
"clean": "rm -rf dist",
"prebuild:staging": "npm run clean",
"prebuild:prod": "npm run clean",
"build:staging": "NODE_ENV=production webpack -p --progress --colors",
"build:prod": "NODE_ENV=production webpack -p --progress --colors",
"start:dev": "webpack-dev-server --devtool eval --progress --colors --hot --inline --content-base dist --host 0.0.0.0 --port 8080",
"start:staging": "npm run build:staging && cd dist && python -m SimpleHTTPServer",
"start": "npm run start:dev"
},
"devDependencies": {
"coffee-loader": "0.7.2",
"coffee-script": "1.10.0",
"css-loader": "0.22.0",
"expose-loader": "0.7.1",
"extract-text-webpack-plugin": "0.9.1",
"file-loader": "0.8.5",
"html-loader": "0.3.0",
"html-webpack-plugin": "1.7.0",
"imports-loader": "0.6.5",
"json-loader": "0.5.4",
"ng-annotate-loader": "0.0.10",
"ngtemplate-loader": "1.3.1",
"node-sass": "3.4.1",
"offline-plugin": "1.3.1",
"raw-loader": "0.5.1",
"resolve-url-loader": "1.4.2",
"sass-loader": "3.1.1",
"style-loader": "0.13.0",
"webpack": "1.12.4",
"webpack-dev-server": "1.12.1",
"webpack-merge": "0.7.3"
},
"dependencies": {
"angular": "1.4.7",
"angular-animate": "1.4.7",
"angular-cookies": "~1.4.0",
"angular-resource": "~1.4.0",
"angular-sanitize": "~1.4.0",
"angular-touch": "~1.4.0",
"angular-ui-router": "0.2.15",
"jquery": "2.1.4",
"moment": "2.10.6",
"ngstorage": "~0.3.9"
}
}