-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "easyrs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node cronconfig.js && node server.js",
"build": "next build",
"test": "TEST_ENABLED=true jest --verbose",
"start": "NODE_ENV=production TEST_ENABLED=false next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install",
"seed": "TEST_ENABLED=false npx ts-node --project tsconfig.script.json ./seeder.ts --seed_fake_data=false --delete_data=false --seed_types=false",
"job": "npx ts-node --project tsconfig.script.json --type-check ./job.ts"
},
"engines": {
"node": ">=18.3.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"dependencies": {
"@next/font": "13.4.17",
"bcrypt": "5.1.1",
"classnames": "2.3.2",
"crypto-js": "4.1.1",
"googleapis": "128.0.0",
"mongoose": "7.4.3",
"next": "13.4.17",
"next-auth": "4.23.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.45.4",
"react-icons": "4.10.1"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@testing-library/jest-dom": "6.1.5",
"@testing-library/react": "14.1.2",
"@types/bcrypt": "5.0.0",
"@types/jest": "29.5.11",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/react-modal": "3.16.0",
"@typescript-eslint/eslint-plugin": "6.4.0",
"babel-jest": "29.6.2",
"cross-env": "7.0.3",
"eslint": "8.35.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "13.2.3",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.1.5",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-security": "1.5.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sonarjs": "0.13.0",
"husky": "^8.0.3",
"jest": "29.6.2",
"jest-environment-jsdom": "29.7.0",
"prettier": "2.6.2",
"ts-node": "10.9.1",
"tslib": "2.6.1",
"typescript": "5.1.6"
}
}