-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "submission-platform",
"version": "1.0.0",
"description": "Platform for handling \"submission based\" events.",
"main": "index.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.ts",
"dev": "nodemon config/express/index.ts",
"test": "npx dotenv -e .env.test jest",
"check": "prettier --check '**/*.{css,scss,html,js,md,ts,tsx}'",
"format": "prettier --write '**/*.{css,scss,html,js,md,ts,tsx}'",
"drizzle-kit": "drizzle-kit",
"db:push:dev": "npx dotenv -e .env drizzle-kit push",
"db:push:test": "npx dotenv -e .env.test drizzle-kit push"
},
"author": "",
"license": "ISC",
"dependencies": {
"better-sqlite3": "^10.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.10",
"express": "^4.19.2",
"ts-results": "^3.3.0",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/uuid": "^9.0.8",
"drizzle-kit": "^0.21.2",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}