-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.07 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
64
65
66
{
"name": "openinventory_backend",
"version": "0.0.1",
"repository": "https://github.com/openinventoryorg/backend-api",
"homepage": "https://openinventoryorg.github.io/docs/",
"description": "An automated inventory Management System for Computer Labs",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon start",
"lint": "./node_modules/.bin/eslint --ext .js config/ models/ routes/ seeders/ app.js",
"lint-fix": "./node_modules/.bin/eslint --fix --ext .js config/ models/ routes/ seeders/ app.js",
"db:migrate": "node src/helpers/migrate_database.js",
"pretest": "true",
"test": "true",
"prefunctional-test":"NODE_ENV=test npm run db:migrate",
"functional-test":"mocha $(find test -name '*.js')",
"generate-docs": "jsdoc -c jsdoc.json",
"manage": "node bin/manage.js",
"jobs": "node bin/jobs.js"
},
"author": "kdsuneraavinash",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/chai-subset": "^1.3.3",
"admin-bro": "^2.4.2",
"admin-bro-expressjs": "^2.0.5",
"admin-bro-sequelizejs": "^0.4.4",
"bcrypt": "5.0.0",
"body-parser": "^1.19.0",
"child-process-promise": "^2.2.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.1",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.4.6",
"nodemailer-express-handlebars": "^3.3.0",
"nodemailer-sendgrid": "^1.0.3",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.6",
"socket.io": "^2.4.0",
"uuid": "^7.0.3",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"chai-uuid": "^1.0.6",
"clean-jsdoc-theme": "^2.2.11",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"faker": "^4.1.0",
"jsdoc": "^3.6.3",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"sequelize-cli": "^5.5.1"
}
}