-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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
48
{
"name": "diduvawin",
"private": true,
"version": "1.3.0",
"description": "A site to quickly find out if UVA won in Basketball and Football",
"main": "node dist/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/jdk2pq/diduvawin"
},
"keywords": [
"uva",
"wahoo",
"basketball",
"football",
"college"
],
"license": "MIT",
"scripts": {
"build": "tsc && ncp src/public dist/public && ncp src/views dist/views",
"build-and-serve": "pnpm run build && pnpm run serve",
"postinstall": "pnpm run build",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"start": "pnpm run serve",
"serve": "node dist/index.js",
"watch-node": "nodemon dist/index.js",
"watch-ts": "tsc -w"
},
"dependencies": {
"ejs": "3.1.8",
"express": "4.18.2",
"lodash": "4.17.21",
"moment": "2.29.4",
"moment-timezone": "0.5.39",
"request": "2.88.2",
"typescript": "4.8.4"
},
"devDependencies": {
"@types/express": "4.17.14",
"@types/lodash": "4.14.189",
"@types/moment-timezone": "0.5.30",
"@types/request": "2.48.8",
"eslint": "8.27.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"ncp": "2.0.0",
"prettier": "2.7.1"
}
}