-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 KB
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
{
"name": "booquet",
"private": true,
"workspaces": {
"packages": [
"packages/**"
]
},
"scripts": {
"admin-ui": "yarn workspace @booquet/admin-ui",
"core": "yarn workspace @booquet/core",
"test": "yarn workspaces run test",
"dev-setup": "yarn && docker-compose -f docker-compose.dev.yml --env-file ./packages/core/.env up -d",
"postinstall": "yarn core prisma:generate"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/eslint": "^7.2.7",
"@types/ioredis": "^4.17.8",
"@types/jest": "^26.0.21",
"@types/js-cookie": "^2.2.6",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^14.0.4",
"@types/nprogress": "^0.2.0",
"@types/passport-jwt": "^3.0.3",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-helmet": "^6.0.0",
"@types/react-redux": "^7.1.9",
"@types/react-router": "^5.1.7",
"@types/react-router-dom": "^5.1.5",
"@types/supertest": "^2.0.10",
"@types/yup": "^0.29.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.2.5",
"prettier": "^2.2.1",
"pretty-quick": "^2.0.1",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '**/*.*(ts|tsx)'"
}
},
"resolutions": {
"@types/react": "^16.9.0",
"yargs-parser": "15.0.1"
}
}