-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "react-starter",
"version": "1.0.0",
"description": "React with webpack setup alongwith code splitting.",
"main": "src/index.js",
"keywords": [
"react",
"webpack"
],
"author": "Yash Joshi <jyash97@gmail.com>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"build": "NODE_ENV=production webpack",
"analyze": "source-map-explorer 'build/*.js'",
"lint": "eslint src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.11.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.17.1",
"source-map-explorer": "^1.8.0",
"style-loader": "^0.23.1",
"webpack": "^4.32.1",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"webpack-merge": "^4.2.1",
"write-file-webpack-plugin": "^4.5.0"
},
"dependencies": {
"cropperjs": "^1.5.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-cropper": "^1.2.0",
"react-dom": "^16.8.6"
}
}