-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 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
{
"name": "helperduckserver",
"version": "1.0.0",
"description": "",
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"main": "index.js",
"scripts": {
"test": "jest --forceExit",
"test-dev": "jest --forceExit --watch",
"start": "node build/index.js",
"start-dev": "ts-node-dev src/index.ts",
"build": "tsc && npm run build-db",
"build-server": "tsc",
"build-db": "npx prisma db push --accept-data-loss",
"build-db-dev": "npx prisma migrate dev --name init",
"edit-db": "npx prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HelperDuck/HelperDuckServer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HelperDuck/HelperDuckServer/issues"
},
"homepage": "https://github.com/HelperDuck/HelperDuckServer#readme",
"dependencies": {
"@prisma/client": "^4.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"firebase-admin": "^11.0.0",
"moment": "^2.29.3",
"morgan": "^1.10.0",
"socket.io": "^4.5.1",
"stripe": "^9.11.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"jest": "^28.1.1",
"nodemon": "^1.3.3",
"prisma": "^4.0.0",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}