-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 KB
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
{
"name": "xkeystroke-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@blueprintjs/core": "^5.0.0",
"@blueprintjs/icons": "^5.0.0",
"axios": "^1.7.9",
"cors": "^2.8.5",
"exif-reader": "^2.0.2",
"file-type": "^20.1.0",
"form-data": "^4.0.2",
"multer": "^1.4.5-lts.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-vis-network-graph": "^3.0.1",
"stream-to-buffer": "^0.1.0",
"uuid": "^10.0.0",
"yauzl": "^3.2.0"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server/server.js",
"client": "cross-env NODE_OPTIONS=--openssl-legacy-provider HOST=0.0.0.0 react-scripts start",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider react-scripts build",
"test": "cross-env NODE_OPTIONS=--openssl-legacy-provider react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
},
"description": "web interface of Xkeystroke, including all frontend elements and user interaction logic.",
"main": "index.js",
"devDependencies": {
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"react-scripts": "^3.0.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"proxy": "http://localhost:3001"
}