-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.23 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
45
{
"name": "express-scaffolding",
"version": "1.0.0",
"description": "Project made with express",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && nodemon --exec node dist/server.js",
"dev": "nodemon --exec ts-node server.ts",
"format": "prettier --write .",
"typeorm": "typeorm-ts-node-esm",
"migration:run": "npx typeorm-ts-node-esm migration:run -d ./app-data-source.ts",
"docker:run": "cd compose && docker compose up -d",
"docker:down": "cd compose && docker compose down"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.8",
"express": "^4.19.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@vinejs/vine": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"mysql2": "^3.9.7",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
}
}