-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "grad_project_2021",
"version": "1.0.0",
"private": true,
"description": "Graduation project at HSE SE",
"main": "src/electron.js",
"homepage": "./",
"repository": {
"type": "git",
"url": "git+https://github.com/korotaS/grad_project_2021.git"
},
"author": "korotaS",
"license": "MIT",
"dependencies": {
"@brainhubeu/react-carousel": "^2.0.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"bootstrap": "^4.5.3",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"electron": "^10.1.3",
"get-port": "^5.1.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"prismjs": "^1.23.0",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.3",
"react-simple-code-editor": "^0.11.0",
"request": "^2.88.2",
"socket.io-client": "^3.0.5",
"wait-on": "^5.2.0"
},
"scripts": {
"start-react": "react-scripts start",
"start-electron": "electron .",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start-dev" : "concurrently \"cross-env BROWSER=none npm run start-react\" \"wait-on http://localhost:3000 && electron .\"",
"start": "electron ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}