-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 971 Bytes
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
{
"name": "api",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "NODE_ENV=development nodemon -e js --ignore logs --ignore node_modules ./bin/www",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec --timeout 10000 test/*/test-*.js",
"lint": "eslint bin config models routes app.js",
"migrate": "./bin/migrate"
},
"dependencies": {
"body-parser": "^1.10.2",
"bookshelf": "^0.7.9",
"checkit": "^0.5.1",
"connect-redis": "^2.2.0",
"cookie-parser": "~1.3.3",
"cookie-session": "^1.1.0",
"debug": "~2.1.1",
"express": "~4.11.1",
"express-session": "^1.10.1",
"knex": "^0.7.4",
"mongoose": "^3.8.22",
"morgan": "~1.5.1",
"mysql": "^2.5.5",
"orm": "^2.1.24",
"pg": "^4.3.0",
"visualcaptcha": "^0.1.0",
"winston": "^0.8.3"
},
"devDependencies": {
"eslint": "^0.15.1",
"mocha": "^2.1.0",
"should": "^4.6.2",
"supertest": "^0.15.0"
}
}