-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.91 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": "initial-react-full-stack",
"version": "1.0.0",
"description": "Updated boilerplate for building a full stack react app.",
"main": "src/server/index.js",
"scripts": {
"build": "webpack --mode production && go build && cp -r public dist",
"server": "nodemon --watch server -e \".go\" --exec \"./start-server.sh\"",
"start": "yarpm run build && ./go-magic-mirror",
"client": "webpack serve --mode development",
"dev": "concurrently \"yarpm run server\" \"yarpm run client\"",
"install-go": "go get ./..."
},
"author": "Erik Malm",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"express": "^4.17.1",
"global": "^4.4.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-pose": "^4.0.10",
"react-redux": "^7.2.2",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.0.0",
"css-loader": "^5.1.3",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"run-if-changed": "^0.0.9",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.26.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"yarpm": "^1.1.1"
}
}