-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "cal-bhangra-app-backend",
"version": "0.0.4",
"description": "Backend services for the Cal Bhangra web & (possible) mobile apps",
"main": "lib/index.js",
"scripts": {
"start": "nodemon lib/app.js --exec babel-node",
"build": "babel . -d out --ignore node_modules",
"lint": "eslint . --cache",
"pretest": "babel-node test/helpers/sync_db.js",
"test": "ava",
"posttest": "npm run lint -s",
"cover": "nyc npm test -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calbhangra/backend.git"
},
"author": "Gurpreet Atwal",
"license": "MIT",
"bugs": {
"url": "https://github.com/calbhangra/backend/issues"
},
"homepage": "https://github.com/calbhangra/backend#readme",
"dependencies": {
"bcrypt": "^1.0.1",
"bluebird": "^3.4.1",
"body-parser": "^1.15.1",
"convict": "^3.0.0",
"cors": "^2.7.1",
"express": "^4.13.4",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.13.1",
"pg": "^6.0.3",
"pg-hstore": "^2.3.2",
"sequelize": "^3.23.3"
},
"devDependencies": {
"ava": "^0.20.0",
"axios": "^0.16.1",
"babel-cli": "^6.10.1",
"babel-preset-eslatest-node6": "^1.0.1",
"eslint": "^3.6.1",
"eslint-config-smartcar": "^2.0.0",
"incito": "^1.0.0",
"nodemon": "^1.9.2",
"nyc": "^10.0.0",
"sinon": "^2.1.0"
},
"ava": {
"require": "babel-register"
}
}