-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "tanuki",
"version": "0.0.0",
"private": true,
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"scripts": {
"start": "babel-node app.js",
"dev": "node_modules/.bin/nodemon node_modules/.bin/babel-node app.js",
"lint": "node_modules/.bin/eslint \"API/**\" \"config/**\"",
"test": "node_modules/.bin/mocha --compilers js:babel-core/register",
"//": "build babel -d ./build/config ./config && babel -d ./build/API ./API && babel -d ./build ./app.js"
},
"dependencies": {
"bcrypt": "^1.0.2",
"bcrypt-then": "^1.1.0",
"body-parser": "^1.15.2",
"bookshelf": "^0.10.3",
"connect-redis": "^3.3.0",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"dotenv": "^4.0.0",
"eslint-plugin-async-await": "0.0.0",
"etag": "^1.8.0",
"express": "~4.13.4",
"express-session": "^1.15.3",
"jsonwebtoken": "^7.3.0",
"knex": "^0.13.0",
"morgan": "^1.7.0",
"nodemon": "^1.11.0",
"objection": "^0.8.2",
"passport": "^0.3.2",
"passport-ldapauth": "^2.0.0",
"pg": "^6.2.3",
"redis": "^2.7.1"
},
"devDependencies": {
"babel": "*",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^3.19.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-unicorn": "^2.1.1",
"mocha": "^2.5.3",
"node-pre-gyp": "^0.6.36",
"pm2": "^2.0.15",
"should": "^7.1.1",
"supertest": "^1.2.0",
"webpack": "^2.6.1"
}
}