-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.09 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
67
68
69
70
71
72
73
{
"name": "labeilleviennoise",
"version": "0.26.0",
"private": true,
"sideEffects": false,
"scripts": {
"prepare": "pnpm root-prepare",
"build": "lerna run build",
"build:packages": "pnpm build --scope @labeilleviennoise/*",
"dev": "nodemon -w packages/ --exec \"pnpm build:packages && lerna run dev --stream\"",
"start": "lerna run start",
"test": "lerna run test",
"test:e2e:open": "concurrently -c auto -n dev,cypress \"pnpm dev\" \"lerna run cypress:open\" --kill-others-on-fail",
"test:e2e:run": "concurrently -c auto -n dev,cypress \"pnpm dev\" \"lerna run cypress:run\" --kill-others-on-fail",
"clean": "lerna clean",
"lint": "eslint \"**/*.{ts,tsx,js,jsx,mjs,cjs}\"",
"lint:fix": "pnpm lint --fix",
"lint-staged": "lint-staged"
},
"dependencies": {
"conventional-changelog-conventionalcommits": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"scheduler": "^0.23.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@labeilleviennoise/build": "workspace:*",
"@labeilleviennoise/eslint-config": "workspace:*",
"@labeilleviennoise/prettier-config": "workspace:*",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"concurrently": "^7.6.0",
"eslint": "^8.31.0",
"husky": "^8.0.3",
"lerna": "^6.4.0",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.2"
},
"engines": {
"node": ">=18.12 <19",
"pnpm": ">=8"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
},
"patchedDependencies": {
"@remix-run/[email protected]": "patches/@[email protected]"
}
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs}": "pnpm eslint --cache --fix",
"*": "prettier -w -u"
},
"nodemonConfig": {
"ext": "ts,tsx,js,json",
"ignore": [
"**/node_modules/**",
"**/dist/**",
"**/prisma-client/**"
],
"delay": 250,
"verbose": true
}
}