-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.44 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
79
{
"name": "edulaw",
"version": "1.0.0",
"private": true,
"description": "EduLaw is a project that assists parents in reporting violations of their children's educational rights to the appropriate legal entity.",
"scripts": {
"dev": "npm run db:start && next dev",
"dev2": "npm run && next dev",
"dev:frontend": "next dev",
"stop": "npm run db:stop",
"db:start": "docker-compose -p edlaw -f docker-compose.yml --env-file .env up -d",
"db:stop": "docker-compose -p edlaw -f docker-compose.yml --env-file .env down",
"build": "next build",
"start": "npm run db:start && next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandboxnu/edulaw.git"
},
"author": "sandboxnu",
"license": "ISC",
"bugs": {
"url": "https://github.com/sandboxnu/edulaw/issues"
},
"homepage": "https://github.com/sandboxnu/edulaw#readme",
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.4",
"@mui/styled-engine-sc": "^5.0.3",
"@mui/styles": "^5.0.1",
"@types/csv-parse": "^1.2.2",
"@types/material-ui": "^0.21.9",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"csv-parse": "^5.0.4",
"formik": "^2.2.9",
"jspdf": "^2.5.1",
"mongodb": "^4.4.1",
"mongoose": "^6.2.8",
"next": "^12.1.1",
"next-auth": "^4.6.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-loader-spinner": "^5.1.7-beta.1",
"styled-components": "^5.3.3",
"yup": "0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^27.4.1",
"@types/react": "17.0.24",
"@types/styled-components": "^5.1.17",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"babel-plugin-styled-components": "^2.0.6",
"babel-preset-next": "^1.4.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^11.2.6",
"prettier": "2.4.1",
"typescript": "4.4.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}