-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "university-finder",
"private": true,
"engines": {
"node": ">=16.13.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"antd": "^4.17.3",
"axios": "^0.24.0",
"babel-plugin-import": "^1.13.3",
"bcryptjs": "^2.4.3",
"cookie": "^0.4.1",
"lodash": "^4.17.21",
"next": "12.0.7",
"next-auth": "^4.0.5",
"next-connect": "^0.11.0",
"next-plugin-antd-less": "^1.6.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-infinite-scroll-component": "^6.1.0",
"request": "^2.88.2",
"sass": "^1.45.0",
"sequelize": "^6.12.0-beta.2",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/bcryptjs": "^2.4.2",
"@types/cookie": "^0.4.1",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"@types/request": "^2.48.7",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"babel-jest": "^27.4.4",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-testing-library": "^5.0.1",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"sequelize-cli": "^6.3.0",
"typescript": "4.5.3"
}
}