-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 950 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
{
"name": "API-Skeleton",
"version": "0.0.1",
"description": "Backend Api Skeleton",
"type": "module",
"main": "src/app.js",
"scripts": {
"start": "node --experimental-modules --experimental-json-modules",
"devstart": "nodemon --experimental-modules --experimental-json-modules"
},
"repository": {
"type": "git",
"url": "https://github.com/rhinterberger/api_skeleton.git"
},
"author": "Rainer Hinterberger",
"license": "MIT",
"dependencies": {
"cors": "latest",
"dotenv": "latest",
"express": "latest",
"express-jwt": "latest",
"express-jwt-permissions": "latest",
"express-promise-router": "latest",
"express-session": "latest",
"helmet": "latest",
"pg": "latest",
"typedi": "latest",
"winston": "latest",
"authmodule": "file:./src/modules/userauth",
"testmodule": "file:./src/modules/testmodule"
},
"devDependencies": {
"nodemon": "latest"
}
}