-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
62 lines (62 loc) · 2.02 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
{
"name": "react-boilerplate-lite",
"version": "0.0.0",
"description": "Minimal boilerplate for React apps",
"scripts": {
"start": "node server/server.js",
"dev": "webpack serve --config webpack/webpack.dev.config.js",
"start:dashboard": "webpack-dashboard node server/server.js",
"build": "NODE_ENV=production webpack --config webpack/webpack.prod.config.js",
"clean": "rm -rf build",
"lint": "eslint src --ext .js,.jsx",
"format:check": "prettier --check {server,src,webpack}/**/*.{js,jsx,json,css,html}",
"format": "prettier --write {server,src,webpack}/**/*.{js,jsx,json,css,html}",
"test": "jest"
},
"author": "Michał Załęcki <michal@michalzalecki.com>",
"license": "MIT",
"jest": {
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"compression": "^1.7.4",
"css-loader": "^5.0.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"html-webpack-plugin": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"morgan": "^1.9.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.12.20",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.21.1",
"webpack-cli": "^4.5.0"
},
"devDependencies": {
"@testing-library/react": "^11.2.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"webpack-dev-server": "^3.11.2"
}
}