-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 929 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 929 Bytes
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
{
"name": "golden-raspberry-awards",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"build": "rimraf dist/ && tsc --project tsconfig.build.json && copyfiles -f src/db/seeds/*.csv dist/src/db/seeds",
"test": "jest",
"format": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "",
"license": "ISC",
"dependencies": {
"csv-parser": "^3.0.0",
"express": "^4.19.2",
"knex": "^3.1.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.1",
"@types/supertest": "^6.0.2",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}