forked from switchfeat-com/switchfeat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.28 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/luxon": "^3.3.0",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.3.1",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-config-prettier": "^8.9.0",
"prettier": "3.0.0",
"lerna": "^7.0.2",
"luxon": "^3.3.0",
"mongodb": "^5.6.0",
"typescript": "^5.1.6"
},
"scripts": {
"publish": "lerna run tsc && lerna publish",
"build": "lerna run tsc",
"lint": "lerna run lint",
"format": "lerna run format",
"start": "cd ./packages/api && npm run start",
"dev:start-api": "cd ./packages/api && npm run dev:start",
"dev:start-ui": "cd ./packages/ui && npm run start",
"dev:start-tw:watch": "cd ./packages/ui && npm run build:tw:watch"
},
"overrides": {
"typescript": "^5.1.6"
}
}