-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "dependency-health-monitor",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"preview": "turbo run preview",
"test:lint": "turbo run test:lint",
"test:unit": "turbo run test:unit --parallel",
"test:e2e": "turbo run test:e2e --filter=frontend",
"test:e2e:watch": "turbo run test:e2e:watch --filter=frontend",
"prepare": "husky install",
"db:push": "turbo run push",
"db:push:acceptdataloss": "turbo run push:acceptdataloss",
"db:push:reset": "turbo run push:reset",
"db:generate": "turbo run generate",
"db:studio": "turbo run studio"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@rushstack/eslint-patch": "^1.1.3",
"@types/lodash-es": "^4.17.6",
"@vue/eslint-config-airbnb-with-typescript": "^7.0.0",
"cypress": "^9.5.3",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"msw": "^0.42.3",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"start-server-and-test": "^1.14.0",
"turbo": "^1.3.1",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
}
}