-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "Test_Project_API",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "npm run build && node ./dist/cluster.js",
"dev": "nodemon --exec babel-node ./server/cluster.js",
"lint": "eslint ./server --fix",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && npm run sync:db && babel ./server --out-dir ./dist",
"sync:db": "cd ./dist && mkdir Database && cp ../server/Database/db.json ./Database/db.json",
"test": "",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kleva-j/Test_Project_API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kleva-j/Test_Project_API/issues"
},
"homepage": "https://github.com/kleva-j/Test_Project_API#readme",
"dependencies": {
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.21.2",
"helmet": "^3.23.3",
"hpp": "^0.2.3",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"winston": "^3.13.1",
"snyk": "^1.1145.0"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"husky": "^4.3.8",
"lint-staged": "^10.0.3",
"nodemon": "^2.0.22"
},
"snyk": true
}