-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.49 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
{
"name": "woodhouse-js",
"version": "1.0.1",
"private": true,
"homepage": "https://perseids-project.github.io/woodhouse-js/",
"dependencies": {
"@primer/octicons-react": "^10.0.0",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^9.4.0",
"bootstrap": "^4.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-jest": "^23.20.0",
"gh-pages": "^3.1.0",
"localforage": "^1.8.1",
"perseids-react-components": "^1.1.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-app-rewired": "^2.1.6",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-router-i18n": "^0.3.0",
"react-scripts": "3.4.1",
"reactstrap": "^8.5.1"
},
"scripts": {
"deploy": "yarn deploy-github && yarn deploy-perseids",
"predeploy-github": "yarn run build",
"deploy-github": "yarn run cleanup && gh-pages -d build",
"predeploy-perseids": "PUBLIC_URL='/woodhouse' yarn run build",
"deploy-perseids": "yarn run cleanup && gh-pages -d build -b perseids-build",
"cleanup": "rm -rf node_modules/gh-pages/.cache",
"build-dictionary": "node ./scripts/build-dictionary.js",
"start": "react-app-rewired start",
"build": "react-app-rewired build && cp build/index.html build/404.html",
"lint": "eslint --ext=js --ext=jsx .",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}