-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "compat",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -vpi --topological-dev run build",
"codegen": "yarn workspaces foreach -vpi --topological-dev run codegen",
"commit": "git-cz",
"dev": "cd packages/web && yarn dev",
"export": "cd packages/web && yarn next export",
"prepare": "husky install",
"start": "cd packages/web && yarn start",
"t:prettier": "cd $INIT_CWD && prettier",
"t:tsc": "cd $INIT_CWD && tsc"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/config-lerna-scopes": "^16.2.2",
"@fast-csv/parse": "^4.3.6",
"@svgr/webpack": "^6.2.1",
"@types/deepmerge": "^2.2.0",
"@types/keyv": "^3.1.3",
"@types/node": "^16.3.3",
"@types/node-fetch": "^2.6.1",
"@types/react": "^17.0.14",
"@types/semver": "^7.3.9",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"node-fetch": "^3.2.3",
"ora": "^6.1.0",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-packagejson": "^2.2.16",
"prettier-plugin-rational-order": "^1.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.7.3"
},
"packageManager": "[email protected]"
}