forked from GSG-G11/Nova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 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
{
"name": "nova",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production npx tsc && node ./dist",
"dev": "cross-env NODE_ENV=development nodemon ./server/index.ts",
"test": "jest",
"heroku-postbuild": "cd client && npm install && 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": "cross-env NODE_ENV=development npx ts-node ./server/database/build.ts"
},
"pre-commit": [
"lint",
"lint-fix",
"lint:client",
"test"
],
"dependencies": {
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"express-async-errors": "^3.1.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.5.0",
"mongoose": "^6.3.1",
"nodemailer": "^6.7.3",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@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/mongoose": "^5.11.97",
"@types/node": "^17.0.29",
"@types/nodemailer": "^6.4.4",
"@types/request-promise": "^4.1.48",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^28.0.1",
"nodemon": "^2.0.15",
"pre-commit": "^1.2.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}