-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
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
{
"name": "ngx-app",
"version": "0.1.0",
"description": "Angular Express web application",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test needed.\"",
"compile": "node ./bin/compile.js",
"build": "jspm bundle-sfx app --minify -y",
"eslint": "eslint ./src",
"development-server": "NODE_ENV=development node index.js",
"production-server": "NODE_ENV=production node index.js",
"browser-sync": "node browser-sync.js",
"deploy": "firebase deploy",
"ci-deploy-to-surge": "surge dist/ angularcodereview.com",
"ci-deploy-to-firebase": "firebase deploy --token ${FIREBASE_TOKEN}"
},
"keywords": [
"angular",
"express",
"angular-express",
"ngx",
"ngx-app"
],
"author": "Angular Express",
"license": "MIT",
"dependencies": {
"config": "^1.14.0",
"express": "^4.12.4",
"harp": "^0.20.x",
"morgan": "^1.6.0"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"browser-sync": "^2.9.10",
"chai": "^3.0.0",
"chokidar": "^1.2.0",
"eslint": "^1.5.1",
"fs-extra": "^0.20.0",
"karma": "^0.12.36",
"karma-babel-preprocessor": "^5.2.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.12",
"karma-jspm": "^1.1.5",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.2.0",
"mocha": "^2.2.5",
"phantomjs": "^1.9.17"
},
"jspm": {
"directories": {
"baseURL": "src",
"packages": "src/_jspm_packages"
},
"dependencies": {
"bootstrap-less": "github:distros/bootstrap-less@^3.3.9"
},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.4"
}
}
}