This repository was archived by the owner on Oct 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·75 lines (75 loc) · 2.4 KB
/
package.json
File metadata and controls
executable file
·75 lines (75 loc) · 2.4 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "iiu-angular-starter",
"version": "1.0.0",
"description": "A starter for IIU projects using AngularJS, Node.js, Express, Webpack.",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --bail --progress --profile --inline --hot",
"prebuild": "npm run clean:build",
"build": "cross-env NODE_ENV=production webpack --bail --progress --profile",
"serve:dev": "cross-env NODE_ENV=development nodemon ./src/server/app.js",
"serve": "cross-env NODE_ENV=production nodemon ./src/server/app.js",
"test": "karma start",
"test-watch": "karma start --auto-watch --no-single-run",
"clean:build": "rimraf dist",
"rimraf": "rimraf",
"cross-env": "cross-env"
},
"repository": {
"type": "git",
"url": "https://github.com/informaticslab/iiu-angular-starter"
},
"author": "Michael Ta",
"license": "Apache-2.0",
"dependencies": {
"angular": "^1.5.0",
"angular-ui-router": "^0.4.2",
"body-parser": "^1.16.0",
"bootstrap": "^3.3.7",
"express": "^4.14.1",
"moment": "^2.17.1",
"mongoose": "^4.8.1",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"serve-favicon": "^2.3.2",
"toastr": "^2.1.2"
},
"devDependencies": {
"angular-mocks": "^1.5.0",
"autoprefixer": "^6.0.3",
"babel-core": "^6.2.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"compression-webpack-plugin": "^0.3.2",
"copy-webpack-plugin": "4.0.1",
"cross-env": "^3.1.4",
"css-loader": "0.26.1",
"eslint": "^3.14.1",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.6.1",
"extract-text-webpack-plugin": "2.0.0-beta.5",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.7.1",
"istanbul-instrumenter-loader": "^1.0.0",
"jasmine-core": "^2.3.4",
"karma": "^1.1.0",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-nyan-reporter": "^0.2.5",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "2.0.1",
"node-libs-browser": "2.0.0",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.4",
"postcss-loader": "1.2.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.1",
"sinon": "^1.17.7",
"style-loader": "^0.13.0",
"webpack": "2.2.0",
"webpack-dev-server": "2.2.0"
}
}