-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.33 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
{
"name": "camping",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"clean": "rm -rf yarn.lock .next node_modules",
"reinstall": "yarn clean && yarn install",
"lint": "eslint --ext .ts,.tsx,.js,.jsx .",
"lint:css": "stylelint \"**/*.(ts|tsx|css)\"",
"format": "prettier \"**/*.(ts|tsx|js|jsx|json|css|md)\" --write",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --watchAll=false --coverage",
"test:ui": "npx backstop test",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts, tsx}": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
]
},
"dependencies": {
"axios": "^1.1.3",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.2.0",
"@types/node": "18.15.5",
"@types/prettier": "^2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.42.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.26.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"styled-components": "^5.3.6",
"stylelint": "^15.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-recommended": "^11.0.0",
"stylelint-config-standard": "^31.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^5.0.2"
}
}