-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.35 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
{
"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\" && tsc --noEmit",
"build": "next build && next export",
"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\"",
"lint:fix": "npm run lint:js -- --fix && prettier --write \"./**/*.{ts,tsx,js}\" --ignore-path .gitignore && npm run lint:style -- --fix",
"start": "next start",
"typecheck": "hcm \"src/**/*.module.css\" && tsc --noEmit"
},
"dependencies": {
"next": "^13.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.16.1",
"@types/react": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.8.0",
"happy-css-modules": "^2.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "*25.0.0",
"typescript": "^5.0.4"
}
}