-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
46
47
{
"name": "",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "GPL-3.0",
"keywords": [],
"scripts": {
"dev": "concurrently \"nodemon -e js,ts,html,css src/index.ts\" \"sass --watch src/static/index.scss src/static/index.css\"",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"start": "node build/src/index.js",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"gcp-build": "rm -rf build/ && npm i && npm run compile && npm run copy-static-assets",
"gcp-build-win": "rmdir /s build && npm run compile && npm run copy-static-assets && npm run start",
"deploy": "gcloud app deploy",
"lint": "gts lint"
},
"devDependencies": {
"@types/ejs": "^2.7.0",
"@types/express": "^4.17.13",
"@types/node": "^14.11.2",
"@types/shelljs": "^0.8.11",
"concurrently": "^7.2.2",
"gts": "^3.1.0",
"nodemon": "^2.0.18",
"sass": "^1.53.0",
"ts-node": "^8.10.2",
"typescript": "^4.4.2"
},
"dependencies": {
"@octokit/rest": "^16.43.2",
"bootstrap": "^5.1.3",
"ejs": "^3.1.9",
"express": "^4.18.1",
"shelljs": "^0.8.5"
}
}