-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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": "kings-dilemma-server",
"version": "1.0.0",
"main": "index.js",
"author": "Kaitlin Thachuk",
"scripts": {
"build": "tsc",
"clean": "rm -rf build",
"start": "node build/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"test": "NODE_ENV=test jest",
"pretty-quick": "pretty-quick --staged",
"lint": "eslint src --ext .js,.ts",
"prepare": "husky install",
"deploy": "git push heroku master"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"socket.io-client": "^3.1.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"socket.io": "^3.1.1"
}
}