This repository has been archived by the owner on Sep 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "jungle-gym-api",
"version": "1.0.0",
"description": "The API for jungle gym",
"type": "module",
"main": "build/start.js",
"scripts": {
"prewatch": "npm run lint",
"watch": "tsc --watch",
"build": "tsc",
"lint": "eslint ./src/",
"start": "node ./build/start.js",
"dev": "nodemon -r dotenv/config ./build/start.js"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/iSirThijs/jungle-gym-api.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/iSirThijs/jungle-gym-api/issues"
},
"homepage": "https://github.com/iSirThijs/jungle-gym-api#readme",
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/mongoose": "^5.10.5",
"@types/node-fetch": "^2.5.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"dotenv": "^9.0.2",
"eslint": "^7.26.0",
"nodemon": "^2.0.7",
"typescript": "^4.2.4"
},
"dependencies": {
"tedis": "^0.1.12",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.12.9",
"node-fetch": "^2.6.1",
"uuid": "^8.3.2"
},
"imports": {
"#server": "./build/server.js",
"#mock/*": "./build/mock/*.js",
"#models/*": "./build/models/*.js",
"#modules/*": "./build/modules/*.js",
"#routes/*": "./build/routes/*.js"
}
}