-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 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
78
{
"name": "polymath",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "babel-node ./src/server.js",
"start-watch": "nodemon --exec babel-node ./src/server.js",
"dev": "concurrently \"npm run start-watch\" \"cd client && npm run dev\"",
"build": "babel src -d lib",
"prod": "cross-env NODE_ENV=production nodemon --exec babel-node ./src/server.js",
"lint": "eslint --ignore-path .eslintignore",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"studio": "prisma studio",
"migrate": "prisma migrate dev",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"dependencies": {
"@prisma/client": "^3.7.0",
"aws-sdk": "^2.1048.0",
"bcrypt": "^5.0.1",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"express-session": "^1.17.2",
"express-validator": "^6.13.0",
"http-errors": "~1.6.3",
"immer": "^9.0.12",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"ramda": "^0.27.1"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.4.2",
"babel-plugin-root-import": "^6.6.0",
"concurrently": "^6.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.4.3",
"lint-staged": "^12.0.2",
"nodemon": "^2.0.15",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.2",
"prisma": "^3.7.0",
"supertest": "^6.1.6",
"tailwindcss": "^2.2.19"
}
}