-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "ascii-coffee-status",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install && npx tsc",
"build": "npx tsc",
"buildAndStart": "npm run lint && npm run build && npm run start",
"start": "node dist/index.js",
"test": "ts-node src/test.ts",
"lint": "npx eslint \"src/*.ts\""
},
"bin": {
"ascii-coffee-status": "./dist/index.js"
},
"keywords": [],
"author": "pixix4",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"ejs": "^3.1.8",
"express": "^4.18.1",
"serve-index": "^1.9.1"
},
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/express": "^4.17.13",
"@types/node": "^18.7.6",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.4.3"
}
}