-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "node",
"version": "1.0.0",
"description": "none",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"postinstall": "tsc && mv -i -v public dist/ && rm -v -rf src",
"watch": "nodemon index.ts localhost 8080",
"deploy": "git add . && git commit -m Heroku && git push",
"test": "jest",
"coverage": "jest --collectCoverage --"
},
"author": "ethan sletteland",
"license": "ISC",
"engines": {
"node": "17.8.0"
},
"dependencies": {
"http-proxy": "^1.18.1",
"jest": "^29.3.1",
"save-dev": "^0.0.1-security",
"uuid": "^9.0.0",
"ws": "^8.11.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@mikemcbride/dad-jokes": "^2.0.0",
"@types/http-proxy": "^1.17.9",
"@types/jest": "^29.2.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}