-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
92 lines (92 loc) · 2.77 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@ts-cc/root",
"private": true,
"scripts": {
"dev": "npx turbo run dev",
"build": "npx turbo run build",
"lint": "npx turbo run lint",
"test": "NODE_OPTIONS=npx turbo run test",
"prepare": "npx husky install",
"publish": "yarn build && npx changeset && npx changeset version && npx changeset publish",
"check:types": "npx turbo check:types --parallel"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"sh -c 'yarn lint'"
]
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commander-js/extra-typings": "^11.1.0",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/types": "^18.4.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/classnames": "^2.2.3",
"@types/jest": "^29.5.11",
"@types/long": "^5.0.0",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.5",
"@types/ramda": "^0.28.20",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"arraybuffer-loader": "^1.0.8",
"bcrypt": "^5.1.0",
"buffer": "^6.0.3",
"chalk": "5.3.0",
"circular-dependency-plugin": "^5.2.2",
"classnames": "^2.5.1",
"commander": "^11.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-xss": "^0.1.12",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"fp-ts": "^2.16.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"long": "^5.2.1",
"nodemon-webpack-plugin": "^4.8.1",
"prettier": "^3.2.4",
"prettier-plugin-classnames": "^0.5.2",
"prettier-plugin-merge": "^0.6.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"pretty-quick": "^4.0.0",
"prop-types": "^15.8.1",
"ramda": "^0.28.0",
"raw-loader": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reflect-metadata": "^0.2.1",
"remove": "^0.1.5",
"rollup": "^4.9.5",
"rollup-plugin-typescript2": "^0.36.0",
"rxjs": "^7.8.0",
"source-map-loader": "^5.0.0",
"source-map-support": "^0.5.21",
"strip-ansi": "^7.0.1",
"ts-enum-util": "^4.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.5.1",
"tslib": "^2.5.2",
"turbo": "^1.11.3",
"typescript": "^5.3.3",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-manifest-plugin": "^5.0.0",
"webpack-node-externals": "^3.0.0"
}
}