-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.84 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
{
"name": "perseids-landing",
"version": "1.0.2",
"private": true,
"homepage": "https://perseids-project.github.io/perseids-landing/",
"dependencies": {
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.7",
"bootstrap": "^4.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"gh-pages": "^3.1.0",
"mkdirp": "1.0.4",
"node-sass-chokidar": "^2.0.0",
"npm-run-all": "^4.1.3",
"perseids-react-components": "^1.1.2",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "^5.2.0",
"react-router-i18n": "^1.0.1",
"react-scripts": "3.4.1",
"react-snap": "^1.23.0",
"reactstrap": "^8.5.1"
},
"resolutions": {
"mkdirp": "0.5.4"
},
"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='/' yarn run build",
"deploy-perseids": "yarn run cleanup && gh-pages -d build -b perseids-build",
"cleanup": "rm -rf node_modules/gh-pages/.cache",
"build-css": "node-sass-chokidar --include-path ./node_modules src/ -o src/",
"watch-css": "yarn run build-css && node-sass-chokidar --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"postbuild": "react-snap",
"lint": "eslint --ext=js --ext=jsx .",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}