-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 955 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
{
"name": "project03",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"client:build": "cd client && npm run build && cd ..",
"client:start": "cd client && npm run start && cd ..",
"start": "node server/index.ts",
"dev:server": "nodemon --watch './**/*.ts' --exec \"node --experimental-specifier-resolution=node --loader ts-node/esm\" src/index.ts",
"dev:deploy": "npm run client:build && npm run dev:server",
"dev:install": "npm i && cd client && npm i && cd ..",
"launch": "npm run dev:install && npm run dev:deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.3",
"fs": "^0.0.1-security",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"jest": "^27.5.1",
"typescript": "^4.6.3"
}
}