-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
87 lines (87 loc) · 2.64 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
85
86
87
{
"name": "magpie-draw",
"version": "0.5.0",
"main": "public/electron.js",
"author": {
"name": "Geekeren",
"url": "http://wangbaiyuan.cn",
"email": "[email protected]"
},
"description": "A lucky draw tool based on React, 基于React的炫酷的滚动抽奖程序",
"repository": {
"type": "git",
"url": "https://github.com/geekeren/Magpie-LuckyDraw.git"
},
"bugs": {
"url": "https://github.com/geekeren/Magpie-LuckyDraw/issues"
},
"homepage": "./",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"classnames": "^2.2.6",
"electron-is-dev": "^1.1.0",
"electron-updater": "^4.2.0",
"fireworks-react": "^1.0.12",
"jquery": "^3.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-edit-inline": "^1.0.8",
"react-particles-js": "^2.7.0",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-sortable-hoc": "^1.10.1",
"react-table": "^6.11.5",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"concurrently": "^5.0.1",
"cypress": "^3.8.0",
"electron": "^7.1.4",
"electron-builder": "^21.2.0",
"gh-pages": "^2.1.1",
"husky": "^3.1.0",
"react-scripts": "3.3.0",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"release-it": "^12.4.3",
"typescript": "^3.7.3",
"wait-on": "^3.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"electron-start": "electron .",
"test:unit": "react-scripts test --env=jsdom",
"test:intergration": "cypress run",
"eject": "react-scripts eject",
"electron-pack": "build -c.extraMetadata.main=build/electron.js",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"dist:web": "yarn build",
"dist:app": "rm -rf dist && electron-builder -mwl",
"dist:linux": "electron-builder --linux --ia32 --x64",
"dist:linux32": "electron-builder --linux --ia32",
"dist:linux64": "electron-builder --linux --x64",
"dist:win": "electron-builder --win --ia32 --x64",
"dist:win32": "electron-builder --win --ia32",
"dist:win64": "electron-builder --win --x64",
"dist": "yarn dist:web && yarn dist:app",
"release:web": "gh-pages -d build",
"release": "release-it"
},
"husky": {
"hooks": {
"pre-push": "yarn test:intergration"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}