-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "nori-server",
"version": "1.0.0",
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"description": "nori-server with Express",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch 'src/**/*' --exec ts-node src/server.ts",
"start": "ts-node dist/server.js",
"build": "tsc && node dist/server.js",
"test": "jest --coverage --verbose",
"test:clear": "jest --clearCache"
},
"dependencies": {
"aws-sdk": "^2.1178.0",
"body-parser": "^1.20.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"class-validator-jsonschema": "^3.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.0",
"routing-controllers-openapi": "^1.8.1",
"slack-node": "^0.1.8",
"swagger-ui-express": "^4.1.4",
"ts-node": "^10.8.2",
"typedi": "^0.8.0",
"typeorm": "^0.2.24",
"typeorm-typedi-extensions": "^0.4.1",
"typescript": "^4.7.4",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.5",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.3",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sqlite3": "^5.0.8",
"supertest": "^6.2.4",
"ts-jest": "^28.0.5"
}
}