-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 2 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
{
"name": "next-starter-kit",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint ./ --ext ts,js,tsx,jsx",
"lint:fix": "eslint ./ --ext ts,js,tsx,jsx --fix",
"lint:cache": "eslint ./ --ext ts,js,tsx,jsx --cache --fix",
"format": "prettier 'src/**/*.{js,jsx,ts,tsx,json,css}' --write",
"type-check": "tsc",
"test": "jest",
"test:watch": "jest --verbose --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@apideck/components": "^0.6.7",
"@apideck/file-picker": "^0.7.0",
"camelcase-keys": "^7.0.1",
"jsonwebtoken": "^8.5.1",
"next": "11.1.3",
"next-session": "^3.4.0",
"node-fetch": "^3.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-highlight": "^0.14.0",
"use-clipboard-copy": "^0.2.0"
},
"devDependencies": {
"@testing-library/dom": "^8.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.9.1",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/react-highlight": "^0.12.3",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vercel/node": "^1.12.1",
"autoprefixer": "^10.3.4",
"babel-jest": "^27.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "4.3.8",
"jest": "^27.2.0",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.4.0",
"tailwindcss": "^2.2.15",
"typescript": "4.4"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "jest"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint . --fix",
"prettier --write"
]
}
}