This repository has been archived by the owner on Oct 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.08 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "node-zero-starter-kit",
"version": "1.0.0",
"description": "Node Zero Starter Kit",
"main": "gulpfile.babel.js",
"scripts": {
"test": "mocha ./dist/test/*.js",
"start": "node ./dist/server/server.js",
"dev": "./node_modules/.bin/gulp",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackyphuong/NodeJS.git"
},
"keywords": [
"NodeJS",
"Angular",
"2.0"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackyphuong/NodeJS/issues"
},
"homepage": "https://github.com/jackyphuong/NodeJS#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"eslint": "^2.5.3",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.0.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-import": "^1.4.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-env": "^0.4.0",
"gulp-live-server": "0.0.29",
"gulp-mocha": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-typescript": "^2.12.1",
"gulp-watch": "^4.3.5",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"run-sequence": "^1.1.5",
"supertest": "^1.2.0",
"typings": "^0.7.9"
},
"dependencies": {
"angular2": "2.0.0-beta.12",
"body-parser": "^1.15.0",
"chalk": "^1.1.3",
"cluster": "^0.7.7",
"co": "^4.6.0",
"es6-shim": "^0.35.0",
"express": "^4.13.4",
"jsonwebtoken": "^5.7.0",
"lodash": "^4.6.1",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"mysql": "^2.10.2",
"nconf": "^0.8.4",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"systemjs": "0.19.24",
"winston": "^2.2.0",
"zone.js": "0.6.6"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es6": true
}
}
}