-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 830 Bytes
/
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": "smart-brain-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"private": "true",
"author": "takanome_dev",
"engines": {
"node": "16.13.2"
},
"scripts": {
"start": "node server",
"dev": "nodemon server",
"test": "snyk test"
},
"license": "MIT",
"dependencies": {
"axios": "^0.27.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"helmet": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"knex": "^2.0.0",
"node-fetch": "3.2.10",
"pg": "^8.7.1",
"winston": "^3.5.0"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@types/node": "*",
"husky": "8.0.1",
"nodemon": "2.0.16",
"snyk": "1.953.0"
},
"peerDependencies": {
"@types/node": "*"
}
}