-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "subscrypt-nodejs-backend",
"main": "src/server.js",
"version": "0.0.2",
"author": "Hadi Esna <atomaton00@gmail.com> (https://github.com/HadiEsna),Saber Zafarpoor <szafarpoor@ce.sharif.edu> (https://github.com/saberdotcoder)",
"license": "Apache-2.0",
"repository": "https://github.com/oxydev/SubsCrypt-nodejs-backend/",
"scripts": {
"serve": "node src/server.js ",
"dev": "nodemon src/server.js",
"test": "NODE_ENV=test mocha src/**/*.test*.js --exit",
"coverage": "NODE_ENV=test nyc npm test",
"start": "npm run serve"
},
"dependencies": {
"@oxydev/subscrypt": "^0.3.1",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "4.17.1",
"morgan": "1.10.0",
"multer": "^1.4.2",
"nodemon": "^2.0.7",
"sequelize": "^6.6.5",
"sqlite3": "^5.0.2",
"swagger-jsdoc": "^7.0.0-rc.6",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "4.3.4",
"chai-http": "4.3.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "8.3.2",
"nyc": "15.1.0"
},
"nodemonConfig": {
"ext": "js",
"delay": 2
}
}