-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "react-atomichub",
"version": "0.3.7",
"private": true,
"engines": {
"node": "16.x.x"
},
"dependencies": {
"@open-rights-exchange/chainjs": "^3.4.2",
"atomicassets": "^1.4.2",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"eosjs": "^22.1.0",
"express": "^4.18.1",
"http-proxy-middleware": "^2.0.6",
"lodash": "^4.17.21",
"oreid-js": "^4.3.0",
"oreid-login-button": "^1.1.2",
"oreid-profile": "1.1.4",
"oreid-react": "^2.0.0",
"oreid-webpopup": "^2.1.1",
"path": "^0.12.7",
"react": "^16.9.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^16.9.0",
"react-scripts": "3.4.1",
"sass": "^1.52.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@types/node": "^16.11.26",
"@types/react": "^16.9.0",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^16.9.8",
"ts-node": "^10.7.0"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"scripts": {
"build": "npm run build-frontend && npm run build-backend",
"build-frontend": "SKIP_PREFLIGHT_CHECK=true react-scripts build",
"build-backend": "tsc --project tsconfig.server.json --pretty",
"dev": "concurrently --kill-others \"react-scripts start\" \"PORT=3001 ts-node --project tsconfig.server.json server.ts\"",
"test": "SKIP_PREFLIGHT_CHECK=true react-scripts test",
"eject": "react-scripts eject",
"start": "node build/server.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}