-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"eslint": "latest",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"inline-chunk-html-plugin": "^1.1.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.2.2",
"postcss": "^8.4.19",
"postcss-styled": "^0.34.0",
"postcss-syntax": "^0.36.2",
"style-loader": "^3.3.1",
"stylelint": "^14.15.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "4.8.4",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"main": "src/index.js",
"name": "kuba",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "webpack --mode production",
"lint-staged": "lint-staged",
"postinstall": "husky install",
"start": "webpack server --mode development --open",
"test": "jest --passWithNoTests"
},
"version": "1.0.0",
"workspaces": {
"packages": [
".prelude/artifact/*",
".prelude/directive/*",
".prelude/element/*",
".prelude/pixel/*",
".prelude/polyfill/*",
".prelude/standard/*",
"component/*",
"oauth/*",
"site/*"
]
}
}