generated from iniad-ts/next-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.6 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
{
"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"
},
"dependencies": {
"@mantine/core": "^7.10.2",
"@mantine/hooks": "^7.10.2",
"next": "14.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"happy-css-modules": "^2.1.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"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",
"typescript": "^5.1.6"
}
}