generated from hiraginoyuki/electron-typescript-react-app
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.25 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
{
"name": "15-puzzle",
"version": "1.0.0",
"description": "",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hiraginoyuki/webpack.15-puzzle.app"
},
"main": "index.js",
"scripts": {
"watch": "webpack --mode development -w",
"serve": "webpack serve --mode development",
"deploy": "run-s deploy:*",
"deploy:build": "webpack",
"deploy:deploy": "gh-pages -d public"
},
"author": "Yuki Hiragino",
"license": "MIT",
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"dependencies": {
"15-puzzle": "^5.2.6",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"gh-pages": "^3.2.3",
"npm-run-all": "^4.1.5",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.9",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}