-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 KB
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
{
"name": "cycle-lock-server",
"version": "1.0.0",
"description": "The server for NITT Cycle app.",
"main": "./src/server.ts",
"scripts": {
"dev": "nodemon --watch src --exec ts-node ./src/server.ts",
"build": "rm -rf ./build && tsc",
"start": "npm run build && node build/server.ts",
"lint": "eslint . --ext .ts --fix",
"lint:github": "eslint . --ext .ts",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare": "husky install",
"session:debug": "DEBUG=express-session npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delta/cycle-lock-server.git"
},
"keywords": [
"node",
"typescript",
"express",
"mysql",
"prisma"
],
"author": "delta",
"license": "MIT",
"bugs": {
"url": "https://github.com/delta/cycle-lock-server/issues"
},
"homepage": "https://github.com/delta/cycle-lock-server#readme",
"dependencies": {
"@prisma/client": "^3.5.0",
"cors": "^2.8.5",
"crypto-random-string": "^3.3.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.13.0",
"helmet": "^4.6.0",
"jose": "^4.3.7",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^16.11.6",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"dotenv": "^10.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"prisma": "^3.5.0",
"ts-node": "^10.4.0"
}
}