forked from yukio808/angular1.x-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "angular1.x-node-starter",
"version": "1.0.0",
"description": "Starter repo for angular 1.x",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enkhi77/angular1.x-node-starter.git"
},
"keywords": [
"angularjs",
"node"
],
"author": "Wes Song",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/enkhi77/angular1.x-node-starter/issues"
},
"homepage": "https://github.com/enkhi77/angular1.x-node-starter#readme",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"node-sass": "^4.5.3"
},
"dependencies": {
"angular": "^1.6.4",
"angular-ui-router": "^1.0.3",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"method-override": "^2.3.9",
"morgan": "^1.8.2"
}
}