-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 911 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
36
37
38
{
"name": "basic-ts-template",
"version": "1.0.0",
"main": "index.js",
"repository": "https://hesipp%40gmail.com@github.com/henrysipp/basic-ts-template.git",
"license": "MIT",
"scripts": {
"dev": "tsnd --respawn index.ts",
"start": "ts-node index.ts",
"build": "tsc",
"test": "jest",
"generate": "npx prisma generate"
},
"dependencies": {
"@prisma/client": "^3.13.0",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"prisma": "^3.13.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.31",
"supertest": "^6.2.3",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
}