-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
{
"name": "react-starter",
"sideEffects": false,
"version": "1.0.0",
"description": "this will be my project prototype",
"main": "index.js",
"scripts": {
"dev": "ENV=development PORT=3001 node ./server.js",
"build": "webpack --config ./webpack/webpack.prod.js",
"start": "ENV=production PORT=3001 node ./server.js",
"publish:customized": "cp ./package.json ./README.md ./dist && cd ./dist && npm publish",
"test": "BABEL_ENV=development jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/han3zeng/react-starter.git"
},
"keywords": [
"react",
"webpack",
"node",
"express"
],
"author": "han3zeng",
"license": "MIT",
"bugs": {
"url": "https://github.com/han3zeng/react-starter/issues"
},
"homepage": "https://github.com/han3zeng/react-starter#readme",
"dependencies": {
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.1.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^1.13.3",
"clean-webpack-plugin": "^4.0.0",
"connect-history-api-fallback": "^1.6.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.3.1",
"webpack": "^5.64.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-middleware": "^5.2.2",
"webpack-dev-server": "^4.5.0",
"webpack-hot-middleware": "^2.25.1",
"webpack-merge": "^5.8.0"
}
}