-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 901 Bytes
/
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
{
"name": "typescript-express-skeleton",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/src/server.js",
"dev": "ts-node-dev ./src/server.ts",
"build": "tsc",
"test": "jest --detectOpenHandles",
"test-complete": "jest --verbose --detectOpenHandles"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/node": "^16.0.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"jest": "^27.4.5",
"prettier": "^2.3.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"knex": "^0.95.15",
"mysql": "^2.18.1"
}
}