-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 975 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
37
38
39
40
41
{
"name": "rest-quest",
"version": "0.0.1",
"description": "A rest-based game",
"main": "index.js",
"scripts": {
"start": "node build/app.js",
"start:dev": "tsnd src/app.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"rest",
"node",
"game",
"express",
"quest"
],
"author": "Gabriel Machado",
"license": "ISC",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"inversify": "^5.0.1",
"mongoose": "^5.10.11",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/mongoose": "^5.7.37",
"@types/node": "^14.14.6",
"@types/passport-http": "^0.3.8",
"@types/passport-local-mongoose": "^4.0.13",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
}
}