-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.31 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
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
{
"name": "new-gravehold",
"version": "0.1.0-alpha",
"private": true,
"babelMacros": {
"styledComponents": {
"pure": true
}
},
"dependencies": {
"@martin_hotell/rex-tils": "^2.1.1",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@testing-library/user-event": "^10.0.1",
"@types/file-saver": "^2.0.1",
"@types/jest": "^25.2.1",
"@types/node": "^14.0.6",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"@types/react-select": "^3.0.11",
"@types/shortid": "^0.0.29",
"@types/styled-components": "^5.0.1",
"aer-data": "^2.1.0",
"aer-types": "^1.0.4",
"cross-env": "^7.0.2",
"file-saver": "^2.0.2",
"gh-pages": "^3.0.0",
"prism-react-renderer": "^1.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-scripts": "3.4.1",
"react-select": "^3.1.0",
"redux": "^4.0.5",
"redux-loop": "^5.1.1",
"reselect": "^4.0.0",
"shortid": "^2.2.15",
"styled-components": "^5.1.0",
"typescript": "^3.8.3"
},
"homepage": "https://jannydiamond.github.io/new-gravehold/",
"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",
"deploy:ghpages": "react-scripts build && gh-pages -d build",
"test:jest": "react-scripts test",
"test:jest:coverage": "react-scripts test --coverage",
"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": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-plugin-macros": "^2.8.0",
"husky": "^4.2.5",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"source-map-explorer": "^2.4.2"
}
}