-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 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
{
"name": "next-boilerplate-typescript-jest",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test:coverage": "yarn-or-npm test --coverage",
"test:debug": "yarn-or-npm test --debug --detectOpenHandles",
"test:ci": "yarn-or-npm test --runInBand --no-cache --ci",
"test": "NODE_ENV=test jest",
"lint": "eslint './{src,pages}/**/*' --ext .js,.jsx,.tsx,.ts",
"format": "eslint './{src,pages}/**/*' --ext .js,.jsx,.tsx,.ts --fix",
"analyze": "cross-env BUNDLE_ANALYZE=both next build",
"export": "cross-env NODE_ENV=production next export",
"production": "npm-run-all analyze export",
"production:clean": "rimraf out/",
"prepare": "husky install",
"pre-commit": "next lint"
},
"dependencies": {
"@tailwindcss/forms": "^0.3.3",
"@types/react-table": "^7.7.2",
"classnames": "^2.3.1",
"dotenv": "^10.0.0",
"next": "^11.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-table": "^7.7.0",
"tailwindcss": "^2.2.2"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.2",
"babel-plugin-module-resolver": "^4.1.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.6",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tailwind": "^0.2.1",
"husky": "^7.0.2",
"jest": "^27.0.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-import": "^14.0.2",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4",
"yarn-or-npm": "^3.0.1"
}
}