-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.21 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-starter-kit",
"version": "1.0.0",
"description": "React Starter kit for React 16.8.4, Webpack 4, Babel 7, Styled Components 4",
"main": "app/index.jsx",
"repository": "https://github.com/l-easwar-akiyama/react-starter-kit.git",
"author": "Sama <uchihaeaswar@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/standalone": "^7.4.4",
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-brands-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@loadable/component": "^5.9.0",
"getlibs": "^0.1.1",
"lodash-es": "^4.17.11",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.4",
"react-live": "^2.0.1",
"react-router-dom": "^5.0.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@hot-loader/react-dom": "^16.8.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"clean-webpack-plugin": "^2.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"html-webpack-plugin": "^4.0.0-beta.5",
"husky": "^2.2.0",
"jest": "^24.8.0",
"jest-dom": "^3.2.0",
"jest-styled-components": "^6.3.1",
"lint-staged": "^8.1.6",
"lodash-webpack-plugin": "^0.11.5",
"prettier": "^1.17.0",
"react-testing-library": "^7.0.0",
"script-ext-html-webpack-plugin": "^2.1.3",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.6.0",
"stylelint-processor-styled-components": "^1.6.0",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-dashboard": "^3.0.5",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "jest"
}
},
"lint-staged": {
"*.{js,jsx}": [
"stylelint './app/**/*.+(js|jsx)'",
"eslint 'app/**/*.+(js|jsx)' --fix",
"git add"
]
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dashboard -- webpack-dev-server --config webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.prod.js",
"analyse": "cross-env NODE_ENV=production webpack --config webpack.prod.js --json > stats.json",
"lint:js": "eslint 'app/**/*.+(js|jsx)' --fix",
"lint:css": "stylelint './app/**/*.+(js|jsx)'",
"test": "jest",
"test:report": "jest --coverage && open reports/coverage/index.html",
"test:watch": "jest --watch"
},
"sideEffects": false
}