-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "grocery_store",
"version": "1.0.0",
"description": "local grocery app",
"scripts": {
"deploy": "npm test && git push heroku master",
"migrate": "knex migrate:rollback && knex migrate:latest && knex seed:run",
"start": "node server.js",
"test": "npm run test:server && npm run test:client",
"test:client": "karma start --single-run",
"test:server": "mocha --recursive"
},
"author": "r3klaw",
"license": "mit",
"dependencies": {
"@google/maps": "^0.4.5",
"angular-local-storage": "^0.7.1",
"angular-payments": "^1.0.7",
"async": "^1.5.2",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.1",
"bookshelf": "^0.13.3",
"compression": "^1.6.2",
"cookie-parser": "^1.4.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-validator": "^2.20.4",
"faker": "^4.1.0",
"jsonwebtoken": "^5.7.0",
"kalamata": "^0.1.4",
"knex": "^0.15.2",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"mysql": "^2.10.2",
"nodemailer": "^2.3.0",
"request": "^2.88.0",
"stripe": "^5.3.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^3.5.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.5",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.16",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0"
},
"engines": {
"node": "6.1.0"
}
}