-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.76 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": "argoose",
"version": "1.0.0",
"description": "Headless ecommerce site",
"main": "index.js",
"author": "Daniel Farrell <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-cli serve --mode=development",
"build": "webpack --mode production",
"test": "jest --watch",
"test:ci": "jest",
"lint": "eslint ./src/",
"format": "prettier --write .",
"deploy": "yarn build && firebase deploy"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"husky": ">=4",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.3",
"lint-staged": ">=10",
"prettier": "2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.7",
"styled-components": "^5.2.1",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^6.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}