forked from asianlegacylibrary/uv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 924 Bytes
/
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
{
"name": "uv",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-scripts": "2.1.3",
"universalviewer": "3.0.33"
},
"scripts": {
"postinstall": "yarn copy-uv-to-src && yarn copy-uv-to-public",
"copy-uv-to-src": "rm -rf src/assets/uv && cp -R node_modules/universalviewer/dist src/assets/uv",
"copy-uv-to-public": "rm -rf public/static/uv && cp -R node_modules/universalviewer/dist public/static/uv",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy-surge": "yarn build && mv build/index.html build/200.html && surge build uv.asianclassics.org"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {}
}