-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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": "seminar4",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"postinstall": "prisma generate",
"lint": "./node_modules/.bin/eslint .",
"lint-staged": "lint-staged",
"start:dev": "node dist/index.js",
"prepare": "husky install",
"test": "yarn mocha test/* -r ts-node/register --timeout 10000 -exit"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^9.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-node": "^10.9.1"
},
"dependencies": {
"@prisma/client": "^4.8.1",
"axios": "^1.2.2",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"husky": "^8.0.2",
"jsonwebtoken": "^9.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"prisma": "^4.8.1",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}