forked from safeinsights/app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "setup-app",
"version": "0.0.1",
"description": "Setup App",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && prettier --check .",
"lint:fix": "next lint --fix && prettier --write .",
"typecheck": "tsc --noEmit",
"checks": "run-p -c typecheck lint",
"test:e2e": "playwright test",
"test:unit": "vitest",
"test": "run-p -c test:*"
},
"author": "Nathan Stitt",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@playwright/test": "^1.47",
"@testing-library/react": "^16.0",
"@types/react": "18.3",
"@vanilla-extract/vite-plugin": "^4.0.16",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^2.1.1",
"dotenv": "*",
"eslint": "*",
"eslint-config-next": "*",
"eslint-config-prettier": "*",
"happy-dom": "*",
"npm-run-all": "*",
"prettier": "*",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "*"
},
"dependencies": {
"@clerk/nextjs": "^5.6.4",
"@mantine/core": "^7.13",
"@mantine/form": "^7.13",
"@mantine/modals": "^7.13",
"@vanilla-extract/css": "^1.16",
"@vanilla-extract/next-plugin": "^2.4",
"clsx": "*",
"next-swagger-doc": "^0.4",
"tsx": "^4.19.1"
}
}