-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.84 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
76
77
78
{
"name": "next-tailwind-cva-poc",
"version": "1.0.0",
"main": "index.js",
"license": "ISC",
"scripts": {
"build": "npm run write-tailwind-conf && npm run write-themes && npm run lint:prod && next build",
"build-static": "npm run lint:prod && next build && next export",
"dev": "npm run write-tailwind-conf && npm run write-themes && next",
"export": "rm -rf .next && npm run build && next export",
"lint": "eslint --config .eslintrc.js ./src --ext .ts,.tsx,.js --fix",
"lint:styles": "stylelint --fix \"./src/**/*.module.css\"",
"lint:prod": "eslint --config .eslintrc.prod.js ./src --ext .ts,.tsx,.js --fix",
"lint-staged": "lint-staged --config .lintstagedrc.json",
"vercel": "vercel --prod",
"prettier": "prettier --config .prettierrc.json --write \"src/**/*.{ts,tsx}\"",
"start": "next start",
"postinstall": "npm run write-tailwind-conf && husky install",
"write-themes": "ts-node writeThemes.ts",
"write-tailwind-conf": "ts-node writeTailwindThemeConf.ts"
},
"devDependencies": {
"@radix-ui/react-icons": "1.1.1",
"@radix-ui/react-select": "1.1.1",
"@swan-io/boxed": "0.12.0",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/node": "18.11.12",
"@types/nprogress": "0.2.0",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/react-transition-group": "4.4.5",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.46.0",
"@vitejs/plugin-react": "3.0.0",
"autoprefixer": "10.4.13",
"c8": "7.12.0",
"class-variance-authority": "0.4.0",
"classcat": "5.0.4",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.6.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-testing-library": "5.9.1",
"eslint-webpack-plugin": "3.2.0",
"husky": "8.0.2",
"identity-obj-proxy": "3.0.0",
"jsdom": "20.0.3",
"lint-staged": "13.1.0",
"next": "13.0.6",
"nprogress": "0.2.0",
"postcss": "8.4.19",
"postcss-import": "15.1.0",
"postcss-nesting": "10.2.0",
"prettier": "2.8.1",
"prettier-plugin-tailwindcss": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-transition-group": "4.4.5",
"stylelint": "14.16.0",
"stylelint-config-concentric-order": "5.1.0",
"stylelint-config-standard": "29.0.0",
"stylelint-order": "5.0.0",
"tailwindcss": "3.2.4",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"vercel": "28.8.0"
}
}