-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.87 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "agurk-server",
"version": "0.1.0",
"private": true,
"description": "WebSocket server to play the danish card game 'agurk'",
"scripts": {
"start": "node dist/app.js",
"clean": "rimraf dist",
"test": "jest --config=.jest.json --silent",
"watch": "nodemon --ext ts,js,json --exec ts-node src/app.ts",
"build": "npm run clean && tsc",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts test/**/*.ts"
},
"author": "Simon Müller",
"license": "MIT",
"engines": {
"node": "16.x",
"npm": "8.x"
},
"devDependencies": {
"@types/config": "^0.0.34",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/hapi__joi": "^17.1.4",
"@types/helmet": "0.0.45",
"@types/jest": "^26.0.13",
"@types/jsonwebtoken": "^8.3.8",
"@types/lodash.sample": "^4.2.6",
"@types/lodash.shuffle": "^4.2.6",
"@types/ramda": "^0.27.17",
"@types/rosie": "^0.0.36",
"@types/supertest": "^2.0.8",
"@types/uuid": "^7.0.0",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"nodemon": "^2.0.2",
"rimraf": "^3.0.0",
"rosie": "^2.0.1",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"agurk-shared": "github:SimonMueller/agurk-shared#semver:4.17",
"config": "^3.3.7",
"cors": "^2.8.5",
"emojis-list": "^3.0.0",
"express": "^4.17.3",
"helmet": "^6.0.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"lodash.sample": "^4.2.1",
"lodash.shuffle": "^4.2.0",
"ramda": "^0.28.0",
"rxjs": "^6.6.7",
"uuid": "^9.0.0",
"winston": "^3.8.0",
"ws": "^7.5.3"
}
}