-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 994 Bytes
/
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
{
"name": "veganaut-backend",
"version": "1.1.0",
"private": true,
"repository": "https://github.com/veganaut/veganaut-backend",
"scripts": {
"postinstall": "if [ ! -f app/config.js ]; then cp app/config-example.js app/config.js; fi",
"start": "node app.js",
"test": "NODE_ENV=test ./node_modules/.bin/jasmine JASMINE_CONFIG_PATH=test/jasmine.json"
},
"dependencies": {
"bcrypt": "1.0.3",
"cors": "2.7.1",
"express": "4.13.3",
"morgan": "1.6.1",
"body-parser": "1.14.1",
"geoip-lite": "1.1.8",
"lodash": "3.10.1",
"jsonschema": "1.2.0",
"transliteration": "1.6.6",
"sequelize": "4.8.0",
"sequelize-cli": "2.8.0",
"pg": "6.4.2",
"pg-hstore": "2.3.2",
"password-generator": "2.0.1",
"nodemailer": "1.11.0",
"bluebird": "3.5.0"
},
"devDependencies": {
"mockery": "1.4.0",
"nock": "9.0.2",
"jasmine": "2.3.2",
"superagent": "1.4.0",
"jshint": "2.8.0",
"supervisor": "0.9.1"
}
}