-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.96 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
{
"name": "toys",
"version": "1.0.0",
"description": "a toys",
"main": "index.js",
"workspaces": {
"packages": [
"packages/chat-client-sdk",
"packages/common",
"packages/navigation-controller",
"packages/server-express",
"packages/static"
]
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install",
"clean-install": "rm -rf node_modules && rm -rf ./packages/*/node_modules && pnpm -r i",
"dev-static": "pnpm --filter @toys/static run start",
"dev-server": "pnpm --filter @toys/server run dev",
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "cz",
"commitlint": "commitlint",
"start": "npm run build:server && npm run build:static && npm run start:server",
"build:server": "pnpm --filter @toys/server run build",
"build:static": "pnpm --filter @toys/static run build",
"start:server": "pnpm --filter @toys/server run start",
"lint-staged": "lint-staged"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"git-cz": "^4.7.6",
"husky": "^7.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "",
"license": "ISC"
}