-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "polytonic-js",
"version": "0.0.3",
"private": true,
"homepage": "https://perseids-project.github.io/polytonic-js/",
"dependencies": {
"bootstrap": "^4.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-jest": "^23.20.0",
"gh-pages": "^3.1.0",
"perseids-react-components": "^1.1.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-clipboard.js": "^2.0.16",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-simple-keyboard": "^2.3.111",
"typeface-arimo": "^0.0.72",
"typeface-tinos": "^0.0.72"
},
"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='/polytonic' yarn run build",
"deploy-perseids": "yarn run cleanup && gh-pages -d build -b perseids-build",
"cleanup": "rm -rf node_modules/gh-pages/.cache",
"start": "react-scripts start",
"build": "react-scripts build && cp build/index.html build/404.html",
"test": "react-scripts test",
"lint": "eslint --ext=js --ext=jsx .",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}