-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "tasmocompiler",
"version": "12.4.0",
"private": true,
"proxy": "http://localhost:3001/",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@mui/styles": "^5.16.7",
"body-parser": "^1.20.3",
"debug": "^4.3.7",
"express": "^4.21.1",
"fs-extra": "^11.2.0",
"ini": "^4.1.3",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^6.4.4",
"react-scripts": "^4.0.3",
"semver": "^7.6.3",
"shelljs": "^0.8.5",
"simple-git": "^3.27.0",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom-fourteen",
"testbackend": "jest server/ ",
"eject": "react-scripts eject",
"startdev": "concurrently --kill-others \"PORT=3001 DEBUG=\"server,git,compile\" nodemon server/app.js\" \"npm start\""
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"concurrently": "^4.1.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"msw": "^0.32.0",
"nodemon": "^2.0.2",
"supertest": "^6.1.3"
}
}