-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.05 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
{
"name": "genshin-impact-wish-simulator",
"version": "2.4.0",
"description": "A React.js web application to simulate Genshin Impact gacha in the browser",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "run-s webpack gh-pages",
"webpack": "webpack",
"gh-pages": "rm -rf docs && cp -r dist docs",
"test": "run-s test:*",
"test:mocha": "mocha -r esm",
"test:cypress": "start-server-and-test start http://localhost:3000 cypress",
"cypress": "./node_modules/.bin/cypress run --headed",
"cypress:open": "./node_modules/.bin/cypress open"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@stdlib/random-base-mt19937": "^0.1.0",
"bootstrap": "^4.5.2",
"chai": "^4.2.0",
"esm": "^3.2.25",
"mocha": "^8.1.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-rating-stars-component": "^2.2.0",
"react-responsive-carousel": "^3.2.10",
"reactstrap": "^8.6.0",
"style-loader": "^1.3.0",
"yup": "^0.32.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-react-jsx": "7.3.0",
"@babel/preset-env": "^7.11.5",
"babel-eslint": "10.0.1",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"cypress": "^6.0.1",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"start-server-and-test": "^1.11.6",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uzair-ashraf/genshin-impact-wish-simulator.git"
},
"keywords": [
"Genshin",
"Impact",
"Wish",
"Simulator"
],
"author": "Uzair Ashraf",
"license": "ISC",
"bugs": {
"url": "https://github.com/uzair-ashraf/genshin-impact-wish-simulator/issues"
},
"homepage": "https://github.com/uzair-ashraf/genshin-impact-wish-simulator#readme"
}