-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·50 lines (50 loc) · 1.27 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
{
"name": "clarity_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "babel-node -- index.js",
"dev": "nodemon -L --exec babel-node index.js",
"doc": "apidoc -i server/controllers/ -o server/public/",
"eslint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.8.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"generate-password": "^1.5.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"sequelize-cli": "^5.5.1",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3"
},
"pre-commit": "eslint",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.6",
"apidoc": "^0.22.1",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^24.9.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.4",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
}
}