-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 923 Bytes
/
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
{
"name": "frontend-monorepo",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "husky install",
"stylelint:w": "stylelint --fix '{apps,packages}/**/*.{css,scss}'",
"stylelint:check": "stylelint '{apps,packages}/**/*.{css,scss}'"
},
"lint-staged": {
"{apps,packages}/**/*.{css,scss}": "stylelint"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"dependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"stylelint": "^14.8.1",
"stylelint-config-recommended": "^7.0.0"
},
"resolutions": {
"@types/react": "17.0.44",
"snarkjs": "0.4.10",
"cross-undici-fetch": "0.4.13",
"hardhat": "2.22.18"
},
"devDependencies": {
"@parcel/packager-ts": "2.6.2",
"@parcel/transformer-graphql": "2.6.2",
"@parcel/transformer-typescript-types": "2.6.2",
"typescript": ">=4.7.4"
}
}