generated from iniad-ts/next-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.8 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
{
"name": "next-ts-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:next": "next dev -p 3000",
"dev:hcm": "hcm 'src/**/*.module.css' -w",
"hcm": "hcm 'src/**/*.module.css'",
"build": "next build",
"lint": "run-p lint:js lint:prettier lint:style",
"lint:js": "eslint --ext .ts,.tsx,.js --ignore-path .gitignore .",
"lint:prettier": "prettier --check \"./**/*.{ts,tsx,js}\" --ignore-path .gitignore",
"lint:style": "stylelint \"src/**/*.css\" --ignore-path .gitignore",
"lint:fix": "npm run lint:js -- --fix && prettier --write \"./**/*.{ts,tsx,js}\" --ignore-path .gitignore && npm run lint:style -- --fix",
"start": "next start",
"typecheck": "npm run hcm && tsc --noEmit",
"test": "jest"
},
"dependencies": {
"axios": "^1.7.2",
"next": "14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.12.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"happy-css-modules": "^2.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-test-api-route-handler": "^4.0.7",
"node-mocks-http": "^1.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.3",
"stylelint": "^16.5.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
}
}