-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "laptop-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/server.ts",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "rimraf dist && tsc",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"ts.check",
"build",
"add-build"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/stripe": "^8.0.417",
"bcrypt": "^5.1.1",
"cloudinary": "^1.40.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.2",
"multer": "^1.4.5-lts.1",
"stream": "^0.0.2",
"stripe": "^14.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^20.8.7",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.28.1",
"nodemon": "^3.0.1",
"pre-commit": "^1.2.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}