-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.08 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
{
"name": "qacp-server",
"version": "0.0.1",
"description": "",
"engines": {
"node": ">= 16.13 <17"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jest": "~27.0.2",
"@types/node": "~16.11.6",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"@types/pg": "^8.6.3",
"@types/sequelize": "^4.28.11",
"@typescript-eslint/eslint-plugin": "~5.7.0",
"@typescript-eslint/parser": "~5.7.0",
"eslint": "~8.4.1",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~25.3.0",
"jest": "~27.4.4",
"nodemon": "^2.0.15",
"prettier": "~2.5.1",
"rimraf": "~3.0.2",
"ts-jest": "~27.1.1",
"tsutils": "~3.21.0",
"typescript": "~4.5.3"
},
"scripts": {
"start": "node build/src/main.js",
"start:watch": "node ./node_modules/nodemon/bin/nodemon.js",
"dev": "nodemon --exec ts-node src/main.ts",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "",
"license": "",
"dependencies": {
"@googleapis/drive": "^2.1.0",
"@googleapis/sheets": "^0.3.0",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.7.11",
"ajv": "^8.8.2",
"aws-sdk": "^2.1055.0",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"node-xlsx": "^0.21.0",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"ts-node": "^10.4.0",
"tslib": "~2.3.1",
"typeorm": "^0.2.41",
"xlsx": "^0.17.5"
},
"volta": {
"node": "16.13.0"
}
}