forked from on3iro/aeons-end-randomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.11 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
88
89
90
91
92
93
94
{
"name": "aeons-randomizer",
"version": "v3.28.2",
"private": true,
"babelMacros": {
"styledComponents": {
"pure": true
}
},
"dependencies": {
"@martin_hotell/rex-tils": "^2.1.1",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"@types/axios": "^0.14.0",
"@types/file-saver": "^2.0.1",
"@types/jest": "^27.0.1",
"@types/jss": "^10.0.0",
"@types/node": "^16.7.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-jss": "^8.6.3",
"@types/react-redux": "^7.0.3",
"@types/react-router-dom": "^5.1.0",
"@types/seedrandom": "^3.0.1",
"@types/shortid": "^0.0.29",
"ajv": "^6.12.5",
"classnames": "^2.2.6",
"core-js": "^3.2.1",
"cross-env": "^7.0.3",
"file-saver": "^2.0.2",
"gh-pages": "^2.0.1",
"idb-keyval": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^8.6.1",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "^4.0.3",
"redux": "^4.0.1",
"redux-loop": "^6.0.1",
"regenerator-runtime": "^0.13.3",
"reselect": "^4.0.0",
"rpg-awesome": "^0.2.0",
"seedrandom": "^3.0.5",
"serve": "^11.3.0",
"shortid": "^2.2.14",
"styled-components": "^5.2.0",
"typescript": "^4.0.3"
},
"homepage": "https://on3iro.github.io/aeons-end-randomizer/",
"scripts": {
"start": "cross-env BROWSER=none REACT_APP_VERSION=$npm_package_version react-scripts start",
"build:base": "cross-env REACT_APP_VERSION=$npm_package_version react-scripts build",
"build": "PUBLIC_URL=/ yarn run build:base && cp _redirects ./build/_redirects",
"docs": "docsify serve docs",
"deploy:docs": "gh-pages -d docs --dotfiles",
"test:jest": "react-scripts test --transformIgnorePatterns \"node_modules/(?!aer-types/types)/\"",
"test:jest:ci": "yarn test:jest -- -w 1",
"test:coverage": "yarn run test:jest -- --coverage --watchAll",
"test:components": "yarn run test:jest -- --testPathPattern=/src/components/",
"test:components:coverage": "yarn run test:jest -- --coverage --collectCoverageFrom=src/components/**/*.ts --watch --testPathPattern=/src/components/",
"test:cy": "cypress run",
"test:cy:open": "cypress open",
"test:redux": "yarn run test:jest -- --testPathPattern=/src/Redux/",
"test:redux:coverage": "yarn run test:jest -- --coverage --collectCoverageFrom=src/Redux/**/*.ts --watch --testPathPattern=/src/Redux/",
"analyze:app": "source-map-explorer build/static/js/main.*",
"analyze:vendor": "source-map-explorer build/static/js/2.*",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/classnames": "^2.2.7",
"@types/styled-components": "^5.1.2",
"babel-plugin-macros": "^2.5.0",
"cypress": "13.3.0",
"husky": "^4.0.10",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"source-map-explorer": "^2.2.2"
}
}