-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
130 lines (130 loc) · 4.28 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "downforacross",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^18.0.0"
},
"dependencies": {
"@material-ui/core": "^4.9.14",
"@sweetalert/with-react": "^0.1.1",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.14",
"@types/querystringify": "^2.0.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/socket.io-client": "^1.4.35",
"aws-sdk": "^2.496.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"clsx": "^1.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"firebase": "^7.8.1",
"firebase-admin": "^8.9.2",
"gaussian": "^1.1.0",
"joi": "^17.3.0",
"left-pad": "^1.3.0",
"lodash": "^4.17.19",
"moment": "^2.20.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.3",
"pg": "^8.3.3",
"puzjs": "^1.0.2",
"querystringify": "^2.2.0",
"react": "^16.12",
"react-color": "^2.19.3",
"react-confetti": "^5.0.1",
"react-dom": "^16.12",
"react-dropzone": "^4.0.0",
"react-flexview": "^3.0.1",
"react-fontawesome": "^1.6.1",
"react-helmet": "^5.2.0",
"react-icons": "^3.10.0",
"react-linkify": "^1.0.0-alpha",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-simple-keyboard": "^1.15.2",
"react-timestamp": "^4.4.0",
"react-use": "^15.3.4",
"request": "^2.34",
"request-promise": "^4.2.5",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"superagent": "^5.0.2",
"sweetalert": "^2.1.2",
"typescript": "^4.1.3",
"utility-types": "^3.10.0",
"uuid": "^8.3.2"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@types/argparse": "^1.0.38",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/pg": "^7.14.7",
"@types/react-color": "^3.0.4",
"@types/react-helmet": "^6.1.0",
"@types/socket.io": "^2.1.12",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.14.0",
"argparse": "^1.0.10",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^1.0.0-rc.15",
"lint-staged": "^10.5.3",
"prettier": "^2.0.5",
"ts-node": "^9.1.1"
},
"scripts": {
"start": "NODE_OPTIONS=--openssl-legacy-provider cross-env PORT=3020 react-scripts start",
"devfrontend": "NODE_OPTIONS=--openssl-legacy-provider cross-env REACT_APP_USE_LOCAL_SERVER=1 PORT=3020 react-scripts start",
"devfrontendprod": "NODE_OPTIONS=--openssl-legacy-provider REACT_APP_ENV=production REACT_APP_USE_LOCAL_SERVER=1 PORT=3020 react-scripts start",
"devbackend": "cross-env PORT=3021 nodemon --watch server -e \"ts\" --exec \"npx ts-node -P server/tsconfig.json server/server.ts\"",
"devbackendprod": "source .env.prod; PORT=3021 nodemon --watch server -e \"ts\" --exec \"npx ts-node -P server/tsconfig.json server/server.ts\"",
"servebackendprod": "while true; do env $(cat .env.prod | xargs) NODE_ENV=production PORT=3021 ts-node -P server/tsconfig.json server/server.ts || true; done",
"servebackendstaging": "while true; do env $(cat .env.staging | xargs) NODE_ENV=production PORT=4021 ts-node -P server/tsconfig.json server/server.ts || true; done",
"build": "NODE_OPTIONS=--openssl-legacy-provider react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"lint-staged": {
"*.{js,jsx, ts,tsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}