-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.75 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
79
80
81
82
83
84
{
"name": "@rkunihiro/dotfiles",
"version": "1.0.0",
"description": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/rkunihiro/dotfiles.git"
},
"engines": {
"node": ">=16.15",
"npm": ">=8.5"
},
"private": true,
"type": "module",
"workspaces": [],
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"autoprefixer": "^10.4.16",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"esbuild": "^0.19.3",
"esbuild-loader": "^4.0.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^48.0.1",
"html-webpack-plugin": "^5.5.3",
"http-server": "^14.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.30",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"sass": "^1.68.0",
"sass-loader": "^13.3.2",
"stylelint": "^15.10.3",
"stylelint-config-recommended-scss": "^13.0.0",
"stylelint-order": "^6.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-manifest-plugin": "^5.0.0",
"workbox-webpack-plugin": "^7.0.0"
},
"scripts": {
"lint": "run-s lint:*",
"lint:eslint": "eslint ./src",
"lint:prettier": "prettier -l ./src",
"lint:tsc": "tsc --noEmit",
"lint:stylelint": "stylelint './src/**/*.scss'",
"fix": "run-s fix:*",
"fix:prettier": "prettier -w ./src",
"fix:eslint": "eslint --fix ./src",
"fix:stylelint": "stylelint --fix './src/**/*.scss'",
"test": "jest",
"dev": "webpack serve",
"clean": "rm -rf ./dist",
"build": "npm run clean && webpack --mode=production",
"serve": "http-server -p 3000 ./dist"
}
}