-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "root",
"private": true,
"author": "Learnn",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"start": "turbo run start",
"prepare": "husky install",
"prettier-check": "turbo run prettier-check",
"prettier-write": "turbo run prettier-write",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"lint-staged": "turbo run lint-staged --concurrency=1",
"eslint-check": "turbo run eslint-check",
"node:version": "node --version",
"release": "cd packages/designn && node scripts/release.js"
},
"devDependencies": {
"@pnpm/merge-lockfile-changes": "4.0.3",
"husky": "8.0.3",
"turbo": "1.8.8",
"typescript": "4.9.5",
"@learnn/nn-config-prettier": "^1.0.1"
},
"engines": {
"pnpm": ">=7",
"node": ">=14.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "^18"
},
"peerDependencyRules": {
"allowedVersions": {
"react": "18",
"react-dom": "18",
"@types/react": "18"
}
}
},
"prettier": "@learnn/nn-config-prettier"
}