-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 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
{
"name": "betpool-2022",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev-vm": "VM=true next dev",
"build": "next build",
"start": "next start",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "npm run prettier:write && npm run lint:fix",
"migrate": "knex migrate:latest",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@navikt/ds-css": "^6.8.0",
"@navikt/ds-react": "^6.8.0",
"@navikt/ds-tailwind": "^6.8.0",
"@navikt/ds-tokens": "^6.8.0",
"@next/env": "^14.2.3",
"@tanstack/react-query": "^5.39.0",
"array-shuffle": "^3.0.0",
"classnames": "^2.5.1",
"dayjs": "^1.11.11",
"firebase": "^10.12.1",
"firebaseui": "^6.1.0",
"jose": "^5.3.0",
"knex": "^3.1.0",
"next": "14.2.3",
"pg": "^8.11.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-firebase-hooks": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "20.12.12",
"@types/pg": "^8.11.6",
"@types/react-dom": "18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "5.4.5"
}
}