This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
96 lines (96 loc) · 2.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "portal.sdu.back-end",
"version": "2.0.0",
"description": "SDU's portal back-end part",
"main": "src/app.js",
"scripts": {
"start:dev": "nodemon",
"start:prod": "node ./build/app.js",
"start": "yarn start:prod",
"test:dev": "mocha -r ./test/babel-register.js --diff -b --recursive ./test/**/*.spec.ts",
"test:prod": "mocha --production -r ./test/babel-register.js --diff -b --recursive ./test/**/*.spec.ts",
"test": "yarn test:dev",
"build:run": "babel ./src --out-dir ./build --extensions '.ts,.tsx,.js'",
"build:check": "tsc -p .",
"build": "yarn build:check && yarn build:run",
"kill:debian": "fuser -k -TERM -n tcp 3000"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "node -r tsconfig-paths/register -r ts-node/register ./src/app.ts",
"ext": "ts, js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benzo-gs1/portal.sdu.back-end.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/benzo-gs1/portal.sdu.back-end/issues"
},
"homepage": "https://github.com/benzo-gs1/portal.sdu.back-end#readme",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eventemitter2": "^6.4.1",
"express": "^4.17.1",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.16",
"reflect-metadata": "^0.1.13",
"request-ip": "^2.1.3"
},
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.10.2",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.10.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.10.0",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@babel/types": "^7.9.6",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/helmet": "^0.0.47",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.21",
"@types/node": "^14.0.5",
"@types/request-ip": "^0.0.35",
"babel-plugin-root-import": "^6.5.0",
"chai": "^4.2.0",
"husky": "^4.2.5",
"mocha": "^7.2.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"ts-node": "^8.10.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}