-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.07 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
{
"name": "indonate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=dev nodemon ./server/index.ts",
"start": "NODE_ENV=production npx tsc && node ./dist",
"test": "NODE_ENV=test jest server/tests",
"heroku-postbuild": "cd client && npm i && npm run build",
"lint": "eslint --ext .ts server/",
"lint-fix": "eslint --ext .ts server/ --fix && cd client && npm run lint-fix",
"lint:client": "cd client && npm run lint",
"build:db": "NODE_ENV=dev ts-node server/database/config/build.ts",
"db:fake": "NODE_ENV=dev ts-node server/database/fakeData/buildFakeData.ts"
},
"pre-commit": [
"lint",
"lint:client",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G11/Indonate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G11/Indonate/issues"
},
"homepage": "https://github.com/GSG-G11/Indonate#readme",
"dependencies": {
"@ant-design/plots": "^1.0.9",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"env2": "^2.2.2",
"express": "^4.17.3",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"sequelize": "^6.19.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.25",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"pre-commit": "^1.2.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}