-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "database",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "tsc-watch --project . --outDir ./dist --onSuccess \"node ./dist/index.js\"",
"devStart": "nodemon ./dist/index.js",
"production": "node ./dist/index.js &",
"production2": "pm2 start dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "sh ./pre-commit"
},
"pre-commit": [
"precommit"
],
"nano-staged": {
"*.{js,ts}": "biome check --apply ./src"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.0.1",
"mariadb": "^3.2.2",
"mysql": "^2.18.1",
"nodemon": "^3.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/mysql": "^2.15.24",
"@types/node": "^20.9.0",
"@types/winston": "^2.4.4",
"concurrently": "^8.2.2",
"nano-staged": "^0.8.0",
"pre-commit": "^1.0.10",
"rimraf": "^5.0.5",
"tsc-watch": "^6.0.4",
"typescript": "^5.4.5"
}
}