-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.25 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "next-goodies",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "next lint",
"test-all": "yarn test:unit && yarn test:e2e",
"test:unit": "jest -c jest.unit.config.ts",
"test:e2e": "jest -c jest.e2e.config.ts",
"test": "yarn lint && yarn type-check && yarn test-all",
"prisma": "dotenv -e .env.local -- prisma"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@prisma/client": "^3.10.0",
"@react-hook/latest": "^1.0.3",
"formidable": "^2.0.1",
"formik": "^2.2.9",
"next": "12.1.0",
"ol": "^6.13.0",
"papaparse": "^5.3.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-query": "^3.34.16",
"react-range": "^1.8.12",
"react-select": "^5.2.2",
"react-select-async-paginate": "^0.6.1",
"slugify": "^1.6.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/react": "^12.1.4",
"@types/formidable": "^2.0.4",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/papaparse": "^5.3.2",
"@types/react": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"autoprefixer": "^10.4.2",
"dotenv-cli": "^5.0.0",
"eslint": "^8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-playwright-preset": "^1.7.0",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^12.3.5",
"playwright": "^1.19.2",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"prisma": "^3.10.0",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"wait-on": "^6.0.1"
}
}