-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.79 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
61
62
63
64
{
"name": "codeconverter",
"version": "0.1.0",
"private": true,
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"prestart": "node aspnetcore-https && node aspnetcore-react",
"start": "rimraf ./build && react-scripts start",
"build": "react-scripts build",
"test": "cross-env CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint ./src/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"axios": "^1.8.2",
"bootstrap": "^5.3.3",
"monaco-editor": "^0.52.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-bootstrap": "^0.26.3",
"react-router-dom": "^6.26.2",
"reactstrap": "^9.2.3"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"ajv": "^8.17.1",
"cross-env": "^7.0.3",
"eslint-config-react-app": "^7.0.1",
"http-proxy-middleware": "^3.0.2",
"jquery": "^3.7.1",
"popper.js": "^1.16.1",
"react-scripts": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "^4.9.5"
}
}