-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "ddjj",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint .",
"build": "tsc",
"start": "node .",
"seed:build": "tsc --p db/.tsconfig.json",
"seed": "npm run seed:build && node db/dist/db/seed/seeder.js",
"webpack": "webpack --config webpack.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gvso/ddjj.git"
},
"author": "Getulio Valentin Sanchez",
"license": "MIT",
"bugs": {
"url": "https://github.com/gvso/ddjj/issues"
},
"homepage": "https://github.com/gvso/ddjj#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-pino-logger": "^5.0.0",
"helmet": "^3.23.2",
"mongoose": "^5.9.20",
"pino": "^6.3.2",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-pino-logger": "^4.0.2",
"@types/helmet": "0.0.47",
"@types/mongoose": "^5.7.27",
"@types/node": "^14.0.14",
"@types/pino": "^6.3.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"pino-pretty": "^4.0.0",
"ts-loader": "^7.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}