forked from VRK-YTI/yti-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.71 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
84
85
{
"name": "yti-datamodel-ui-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "prettier --check . && next lint --dir src",
"format": "prettier --write .",
"test": "TZ=UTC jest",
"test:watch": "TZ=UTC jest --watch",
"test:ci": "TZ=UTC jest --ci --runInBand --coverage",
"test:ci:no-coverage": "TZ=UTC jest --ci --runInBand",
"i18n": "i18next 'src/**/*.{ts,tsx}' '../common-ui/**/*.{ts,tsx}'",
"i18n:ci": "i18next 'src/**/*.{ts,tsx}' --fail-on-warnings --fail-on-update",
"lint-staged": "lint-staged"
},
"dependencies": {
"@fontsource/source-sans-pro": "^4.5.9",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.4.0",
"html-to-image": "^1.11.11",
"iron-session": "^6.3.1",
"next": "^12.1.6",
"next-i18next": "^12.0.1",
"next-redux-wrapper": "^7.0.5",
"next-transpile-modules": "^9.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^8.0.7",
"react-redux": "^8.0.2",
"reactflow": "^11.8.3",
"redux-devtools-extension": "^2.13.9",
"remark-gfm": "^3.0.1",
"suomifi-design-tokens": "^6.0.0",
"suomifi-icons": "^7.1.0",
"suomifi-ui-components": "^12.0.2",
"swr": "^2.1.5",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"yti-common-ui": "file:../common-ui/components"
},
"devDependencies": {
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^13.4.1",
"@types/axios-mock-adapter": "^1.10.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.182",
"@types/node": "^16.11.6",
"@types/react": "17.0.30",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.1",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"axios-mock-adapter": "^1.21.1",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.6",
"i18next-parser": "^8.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"jest-junit": "^14.0.1",
"lint-staged": "^13.0.3",
"next-router-mock": "^0.7.4",
"node-mocks-http": "^1.11.0",
"prettier": "^2.6.2",
"react-test-renderer": "^17.0.2",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"engines": {
"node": ">=18.16.0 <19.0.0"
}
}