-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "treebank-vr",
"version": "0.0.2",
"private": true,
"homepage": "https://perseids-project.github.io/treebank-vr/",
"dependencies": {
"bootstrap": "^4.5.2",
"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-dom": "^16.13.1",
"react-force-graph": "^1.36.10",
"react-force-graph-vr": "^1.13.4",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"three-spritetext": "^1.5.2",
"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='/treebank-vr' 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": "bash test/test.sh",
"approve-changes": "bash test/approve-changes.sh",
"lint": "eslint --ext=js --ext=jsx .",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}