-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 897 Bytes
/
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
{
"name": "kalah-node",
"version": "1.0.0",
"description": "Game of Kalah",
"main": "app.js",
"scripts": {
"build": "tsc --project ./",
"start": "nodemon src/app.ts",
"lint": "eslint 'src/**/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markpit/kalah-node.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/markpit/kalah-node/issues"
},
"homepage": "https://github.com/markpit/kalah-node#readme",
"dependencies": {
"express": "^4.17.1",
"inversify": "^5.1.1",
"inversify-express-utils": "^6.3.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"eslint": "^7.32.0",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}