-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.3 KB
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
{
"name": "Wipeyy",
"version": "1.0.0",
"main": "index.js",
"repository": "ssh://git@github.com/TanisukeGoro/Wipeyy.git",
"author": "Okita <keisi1100525@outlook.jp>",
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server",
"watch": "webpack --watch",
"lint": "eslint --ext .js,.jsx src/",
"lint:fix": "eslint --ext .js,.jsx src/ --fix",
"format": "prettier --write 'src/**/*.{js,jsx,css,json}'",
"check-format": "prettier --check 'src/**/*.{js,jsx,css,json}'"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.0",
"daisyui": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"html-webpack-plugin": "^5.6.0",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"prettier": "^3.5.3",
"style-loader": "^3.3.4",
"tailwindcss": "^3.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}