-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "mylinky-app_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engineStrict": true,
"engines": {
"node": ">=20.x",
"npm": ">=10.x"
},
"scripts": {
"postinstall": "npm run setup:development",
"start": "cross-env NODE_ENV=\"development\" nodemon \"./start.ts\"",
"serve": "nodemon \"./build/start.js\"",
"build": "npm-run-all build:production setup:production",
"build:production": "tsc -p \"./tsconfig.json\"",
"setup:development": "cross-env NODE_ENV=\"development\" ts-node \"./scripts/setup.ts\"",
"setup:production": "cross-env NODE_ENV=\"production\" ts-node \"./scripts/setup.ts\""
},
"author": "https://github.com/andrianfaa",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.12.8",
"@types/nodemon": "^1.19.6",
"cross-env": "^7.0.3",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dayjs": "^1.11.11",
"express": "^4.19.2",
"helmet": "^7.1.0",
"mongoose": "^8.3.3",
"morgan": "^1.10.0"
}
}