-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "lite-pwa",
"version": "1.0.0",
"main": "index.js",
"author": "mlabate",
"license": "MIT",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/mlabate/litetodo-pwa.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack serve --mode=development",
"start": "webpack serve",
"build": "webpack --mode=production",
"format": "prettier --write '{*.js, src/**/*.{js,jsx}}'",
"lint-style": "npx stylelint '**/*.scss'",
"lint": "eslint src/ --fix",
"postinstall": "husky install",
"prepare": "husky install"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-feather": "2.0.9",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@svgr/webpack": "^5.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.2",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.0.0",
"husky": "^5.0.9",
"mini-css-extract-plugin": "^1.3.6",
"prettier": "^2.2.1",
"sass": "^1.32.6",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.9.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"url-loader": "^4.1.1",
"webpack": "^5.20.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}