-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.99 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
{
"name": "rpcms",
"version": "1.0.0",
"private": true,
"description": "",
"main": "app.js",
"scripts": {
"start": "gulp watch",
"postinstall": "cd public && npm install",
"test": "./node_modules/.bin/mocha tests --recursive --watch --compilers js:babel-core/register",
"build-only": "gulp build:clean",
"es6-server": "./node_modules/.bin/babel-node app.js ",
"dev-fullstack": "concurrently -k \"npm start\" \"cd public && ng serve\""
},
"author": "",
"license": "ISC",
"babel": {
"plugins": [
[
"babel-root-import",
[
{
"rootPathSuffix": "app"
},
{
"rootPathPrefix": "#",
"rootPathSuffix": "config"
}
]
]
],
"presets": [
"es2015",
"stage-0"
]
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.17.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"babel-root-import": "^4.1.5",
"chai": "^3.5.0",
"concurrently": "^3.1.0",
"del": "^2.2.2",
"eslint": "^3.6.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-nodemon": "^2.2.1",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-util": "^3.0.7",
"mocha": "^3.1.0",
"run-sequence": "^1.2.2",
"source-map-support": "^0.4.6"
},
"dependencies": {
"babel-cli": "^6.16.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"compression": "^1.5.2",
"cookie-parser": "^1.3.3",
"express": "^4.14.0",
"express-conditional-tree-middleware": "^1.0.3",
"express-handlebars": "^3.0.0",
"express-rate-limit": "^2.6.0",
"glob": "^6.0.4",
"handlebars": "^4.0.5",
"jsonwebtoken": "^7.1.9",
"method-override": "^2.3.0",
"mongoose": "^4.1.2",
"morgan": "^1.6.1",
"needle": "^1.1.2",
"serve-favicon": "^2.3.0",
"webpack": "^1.13.2"
}
}