-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.56 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
{
"name": "dp-faktasider-frontend",
"private": true,
"description": "Frontend for produktområde arbeid sine faktasider på nav.no/arbeid",
"version": "0.1.0",
"author": "NAV",
"dependencies": {
"@navikt/ds-css": "^0.18.27",
"@navikt/ds-icons": "^0.8.20",
"@navikt/ds-react": "^0.19.25",
"@navikt/ds-tokens": "^0.9.7",
"@navikt/nav-dekoratoren-moduler": "^1.9.0",
"@sanity/block-content-to-react": "^3.0.0",
"@sanity/image-url": "^1.0.2",
"@sentry/nextjs": "^6.13.3",
"amplitude-js": "^8.21.9",
"date-fns": "^2.30.0",
"i18next": "^21.9.1",
"identity-obj-proxy": "^3.0.0",
"keyboardjs": "^2.7.0",
"nav-frontend-js-utils": "^1.0.20",
"next": "^12.2.5",
"next-sanity": "^0.8.2",
"node-cache": "^5.1.2",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-collapse": "^5.1.1",
"react-dom": "^17.0.2",
"react-i18next": "^11.18.4",
"react-use": "^17.4.0",
"sass": "^1.69.5",
"styled-components": "^5.3.11",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@testing-library/cypress": "^10.0.1",
"@testing-library/react": "^12.1.2",
"@types/amplitude-js": "^8.16.5",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@types/react-collapse": "^5.0.4",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.30",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"concurrently": "^7.6.0",
"cypress": "^13.5.1",
"eslint": "^8.53.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"jest": "^27.3.1",
"jest-styled-components": "^7.2.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^13.2.2",
"npm-check-updates": "^16.14.6",
"prettier": "^2.8.8"
},
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"cypress:open": "concurrently \"next\" \"npx cypress open\"",
"cypress:run": "npm run build && concurrently \"npm run start\" \"npx cypress run\"",
"typeCheck": "tsc",
"docker": "docker build -t dpfakta . --progress=plain && docker run --rm -p 3000:3000 dpfakta",
"prepare": "node ./prepare.js",
"check-updates": "ncu -i --format group"
},
"prettier": {
"printWidth": 120
},
"lint-staged": {
"*.{js,jsx,json,md,ts,tsx}": "prettier --write"
}
}