-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "smarthome",
"version": "1.3.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "webpack serve --mode development --hot",
"server": "NODE_ENV=development node --watch server",
"dev": "npm run server & npm run client",
"build": "webpack --config webpack.config.js --mode production",
"lint": "eslint --ext .js,.jsx .",
"test": "jest",
"preversion": "npm install && npm run lint",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags"
},
"keywords": [],
"author": "Joe Dempsey",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.1.3",
"cors": "^2.8.5",
"dorita980": "github:jwdempsey/dorita980",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"google-auth-library": "^9.10.0",
"node-govee-led": "^1.5.0",
"node-json-transform": "^1.1.2",
"node-vesync": "^1.0.2",
"react": "^18.0.0",
"react-bootstrap": "^2.1.0",
"react-bootstrap-icons": "^1.8.1",
"react-dom": "^18.0.0",
"tplink-cloud-api": "github:jwdempsey/tplink-cloud-api"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/react": "^15.0.7",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.8.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"sass": "^1.46.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
}
}