-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "pug-site",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint-staged": "lint-staged",
"lint": "eslint --fix --ext .ts .",
"test-config": "jest --init",
"dev": "export NODE_ENV=dev && nodemon src/index.ts",
"test": "jest",
"prepare": "husky",
"build": "npx tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet",
"git add"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/express-flash": "^0.0.5",
"@types/express-session": "^1.17.10",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/mocha": "^10.0.6",
"@types/node-sass-middleware": "^0.0.35",
"@types/yup": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"nodemon": "^3.0.2",
"prisma": "^5.8.1",
"sucrase": "^3.34.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.8.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"node-sass-middleware": "^1.1.0",
"pug": "^3.0.2",
"react-toastify": "^9.1.3",
"yup": "^1.3.3"
}
}