-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.5 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
64
65
66
{
"name": "react-static-page-webpack-plugin",
"version": "1.2.1",
"main": "index.js",
"repository": {
"type": "git",
"url": "/~https://github.com/4Catalyzer/react-static-page-webpack-plugin.git"
},
"author": "4Catalyzer",
"license": "MIT",
"scripts": {
"format": "4c format .",
"lint": "4c lint .",
"release": "4c release",
"tdd": "jest --watch",
"test": "yarn lint",
"testonly": "jest"
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "4c lint --fix"
},
"jest": {
"preset": "@4c/jest-preset",
"testEnvironment": "node"
},
"release": {},
"devDependencies": {
"@4c/cli": "^2.2.0",
"@4c/jest-preset": "^1.5.4",
"@babel/preset-react": "^7.12.13",
"eslint-config-4catalyzer": "^1.1.5",
"eslint-config-4catalyzer-jest": "^2.0.10",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"postcss": "^8.2.5",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"webpack": "^5.21.2",
"webpack-atoms": "^16.0.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"eval": "^0.1.2"
},
"peerDependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3",
"webpack": "^5.21.2"
}
}