-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.89 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
60
61
62
63
{
"name": "turin-backend",
"version": "1.0.0",
"main": "app.js",
"repository": "https://github.com/tomiadebanjo/turin-backend.git",
"author": "Tomi Adebanjo <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir dist",
"db:seed": "node_modules/.bin/sequelize db:seed:all",
"lint": "node_modules/.bin/eslint ./src",
"lint:fix": "yarn lint --fix",
"serve": "nodemon src/server/app.js",
"start": "yarn serve",
"start:dev": "nodemon --exec babel-node src/server/app.js",
"pretest": "NODE_ENV=test babel-node src/database/migrations/DbMigrate.js && NODE_ENV=test yarn db:seed",
"test": "jest --no-cache --detectOpenHandles --runInBand --forceExit"
},
"engines": {
"node": "11.12.0"
},
"dependencies": {
"@admin-bro/express": "^3.1.0",
"@admin-bro/sequelize": "^1.2.1",
"@sendgrid/mail": "^6.3.1",
"admin-bro": "^4.0.1",
"admin-bro-expressjs": "^2.1.1",
"admin-bro-sequelize": "^1.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-session-sequelize": "^6.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.1",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"mysql2": "^1.7.0",
"sequelize": "^5.22.4",
"sequelize-cli": "^5.5.1",
"shortid": "^2.2.14",
"stripe": "^6.31.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"babel-core": "^6.26.3",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.1",
"jest": "^24.7.1",
"nodemon": "^1.19.4",
"supertest": "^4.0.2"
}
}