-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 988 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": "menu-app",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"build": "rimraf build && tsc",
"postbuild": "copyfiles -u 1 src/**/*.ejs build/",
"preserve": "npm run build",
"prestart": "npm run build",
"serve": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -q build/server.js\"",
"start": "cross-env NODE_ENV=production node build/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/node": "^18.7.4",
"cookie-parser": "^1.4.6",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"ejs": "^3.1.8",
"express": "^4.18.1",
"google-auth-library": "^8.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"devDependencies": {
"concurrently": "^7.3.0",
"nodemon": "^2.0.19"
}
}