-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.11 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
{
"name": "fullstack-monitor-cli",
"version": "1.0.5",
"description": "Full Stack Monitor CLI",
"main": "server/index.js",
"bin": {
"fullstack-monitor-cli": "./bin/detectOS.js"
},
"install": "npm run build",
"scripts": {
"dev": "concurrently \"npm run start\" \"npm run react\"",
"start": "nodemon server/index.js",
"react": "webpack serve --env NODE_ENV=development --mode development",
"build": "npx webpack --config webpack.config.js",
"test": "NODE_ENV=test jest --detectOpenHandles",
"production": "node server/index.js"
},
"nodemonConfig": {
"ignore": [
"server/data/*"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@chakra-ui/icons": "^1.0.8",
"@chakra-ui/react": "^1.4.1",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"ansi": "^0.3.1",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"chart.js": "^2.9.4",
"concurrently": "^6.0.1",
"cors": "^2.8.5",
"css-loader": "^5.1.3",
"eslint-loader": "^4.0.2",
"expect": "^26.6.2",
"expect.js": "^0.3.1",
"express": "^4.17.1",
"framer-motion": "^4.0.3",
"kill-port": "^1.6.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.9",
"nodemon": "^2.0.7",
"os-utils": "0.0.14",
"postcss-loader": "^5.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"socket.io": "^4.0.0",
"socket.io-client": "^4.0.0",
"webpack": "^5.27.2",
"webpack-cli": "^4.5.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-eslint": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.0",
"eslint-plugin-react-hooks": "^1.7.0",
"webpack-dev-server": "^3.11.2"
},
"proxy": "http://localhost:3861"
}