-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.04 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
{
"name": "kroppskart2",
"author": "WAPP",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 8080",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"extract": "lingui extract",
"compile": "lingui compile",
"test-all": "npm run lint && npm run type-check && npm run test",
"prepare": "husky",
"postinstall": "lingui compile"
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"@lingui/react": "^4.11.4",
"@testing-library/react": "^16.0.1",
"@uio-appu/nettskjema-utils": "^0.2.2",
"classnames": "^2.5.1",
"eslint-config-next": "^15.0.0-canary.171",
"eslint-plugin-prettier": "^5.2.1",
"next": "^14.2.13",
"next-redux-wrapper": "^8.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-modal": "^3.16.1",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"sass": "^1.79.3",
"swr": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@lingui/cli": "^4.11.4",
"@lingui/macro": "^4.11.4",
"@lingui/swc-plugin": "4.0.8",
"@next/bundle-analyzer": "^14.2.13",
"@swc/core": "1.6.0",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.5.2",
"@types/node": "^20.16.9",
"@types/react": "^18.3.9",
"@types/react-modal": "^3.16.3",
"@types/react-redux": "^7.1.34",
"@types/redux": "^3.6.31",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"babel-jest": "^29.7.0",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.0",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
}
}