-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.85 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
{
"name": "reactro",
"version": "0.1.0",
"description": "Sprint retro thing",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --config webpack/dev.config.js",
"prebuild": "npm run clean",
"build": "webpack --mode production --config webpack/config.js",
"clean": "rimraf build",
"lint": "eslint -c .eslintrc src"
},
"browserslist": [
"last 2 versions"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"author": "Leadhome",
"license": "MIT",
"dependencies": {
"acorn": "^7.1.0",
"classnames": "^2.2.6",
"dotenv-webpack": "^1.7.0",
"final-form": "^4.18.7",
"firebase": "^7.8.0",
"mini-css-extract-plugin": "^0.9.0",
"nes.css": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-final-form": "^6.3.5",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@leadhome/eslint-config": "^1.4.0",
"@svgr/webpack": "^5.1.0",
"ajv": "^6.11.0",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"webpack": "4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"workbox-webpack-plugin": "^5.0.0"
}
}