This repository has been archived by the owner on Mar 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.25 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
80
81
82
83
84
85
86
87
88
89
{
"name": "policy_search_frontend",
"version": "1.0.0",
"private": true,
"dependencies": {
"@elastic/elasticsearch": "7.14.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@testing-library/user-event": "^13.5.0",
"express": "^4.17.2",
"html-react-parser": "^1.4.7",
"moment": "^2.29.3",
"next": "^12.3.1",
"next-useragent": "^2.8.0",
"nextjs-redirect": "^5.2.1",
"postcss-import": "^14.0.2",
"prop-types": "^15.8.1",
"qs": "^6.10.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^0.5.7",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "node server.js",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"test": "jest",
"lint": "eslint --fix --ext .js,.jsx pages/"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"last 2 versions",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"autoprefixer": "^10.4.12",
"babel-jest": "^27.5.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.17",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^3.1.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.{js,jsx}": [
"npm run lint"
]
}
}