-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "crc",
"version": "0.0.0",
"description": "Cloud Resume Project",
"main": "src/index.js",
"repository": "https://github.com/NeonGamerBot-QK/CRC",
"author": "Neon <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"dev:compile": "ncc run . -d",
"dev": "nodemon .",
"dev:compile-sync": "nodemon --exec 'yarn dev:compile'",
"build": "ncc build . -m -a",
"start": "node dist",
"clean": "rimraf dist src/db.json",
"test": "node util/tests.js",
"husky": "husky install",
"lint": "prettier --write **/*.{js,md,html}"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.3",
"simple-json-db": "^2.0.0",
"uuid": "^9.0.0",
"@vercel/ncc": "^0.36.1"
},
"devDependencies": {
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"supertest": "^6.3.3"
},
"lint-staged": {
"*.{js,md,html}": [
"prettier --write"
]
}
}