-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "server",
"version": "0.0.0",
"private": true,
"bin": {
"server": "bin/wwww"
},
"main": "index.js",
"scripts": {
"start": "npx ts-node src/app.ts",
"serve": "npm run build && npm start",
"build": "npm run build:ts",
"build:ts": "npx tsc",
"watch:ts": "npx tsc -w",
"watch:node": "nodemon ./bin/www",
"dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch:ts\" \"npm run watch:node\"",
"lint": "tslint --project \"tsconfig.json\"",
"test": "jest",
"test:watch": "npm run test -- --watchAll",
"test:coverage": "npm run test -- --coverage"
},
"dependencies": {
"better-sqlite3": "^8.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"debug": "^4.3.4",
"express": "^4.18.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"sqlite3": "^5.1.4",
"ts-node": "^10.9.1",
"typeorm": "^0.3.12"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.2",
"@types/supertest": "^2.0.12",
"concurrently": "^5.2.0",
"jest": "^29.4.3",
"supertest": "^4.0.2",
"ts-jest": "^29.0.5",
"tsc": "^2.0.4",
"tslint": "^6.1.2",
"typescript": "^4.9.5"
}
}