-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.86 KB
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
{
"name": "react-boilerplate",
"description": "React boilerplate with Webpack 4 and Babel 7",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"build": "NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thatisuday/react-boilerplate.git"
},
"keywords": [
"react",
"boilerplate",
"webpack",
"babel"
],
"author": "thatisuday",
"license": "ISC",
"bugs": {
"url": "https://github.com/thatisuday/react-boilerplate/issues"
},
"homepage": "https://github.com/thatisuday/react-boilerplate#readme",
"dependencies": {
"axios": "^0.19.0",
"classnames": "^2.2.6",
"lodash": "^4.17.15",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"config": "^3.2.2",
"config-webpack": "^1.0.4",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.14.3",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^7.2.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
}
}