-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
121 lines (121 loc) · 3.79 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "onlineweb-frontend",
"version": "1.0.0",
"main": "src/index.tsx",
"repository": "git@github.com:dotkom/onlineweb-frontend.git",
"author": "dotkom@online.ntnu.no",
"license": "MIT",
"private": true,
"type-check": "tsc --jsx",
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start",
"format": "prettier --write 'src/**/*.{ts,tsx,less}'",
"format-check": "prettier --check 'src/**/*.{ts,tsx,less}'",
"lint": "npm run lint-ts && npm run lint-less && npm run format",
"lint-ts": "npm run lint-ts-check --fix",
"lint-less": "npm run lint-less-check --fix",
"lint-check": "npm run lint-ts-check ; npm run lint-less-check",
"lint-ts-check": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint-less-check": "stylelint src/**/*.less",
"test": "jest --env=jsdom",
"tsc": "tsc --noEmit"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.3.0",
"@nivo/bar": "^0.52.1",
"@nivo/calendar": "^0.52.1",
"@nivo/pie": "^0.52.1",
"@types/core-js": "^2.5.0",
"@types/enzyme": "^3.1.16",
"@types/jest": "^24.0.0",
"@types/luxon": "^1.10.2",
"@types/query-string": "^6.2.0",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.0.11",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"autoprefixer": "^9.4.7",
"css-loader": "^1.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"jest": "^24.1.0",
"jest-fetch-mock": "^2.1.0",
"less": "^3.9.0",
"luxon": "^1.11.1",
"multirange": "^2.0.0",
"oidc-client-ts": "^2.4.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.4",
"query-string": "^6.2.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-markdown": "^4.0.6",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-standard": "^18.2.0",
"ts-jest": "^23.10.5",
"typescript": "3.8.3"
},
"dependencies": {
"@dotkomonline/design-system": "^0.22.2",
"@fortawesome/fontawesome-svg-core": "^1.2.14",
"@fortawesome/free-brands-svg-icons": "^5.8.2",
"@fortawesome/free-regular-svg-icons": "^5.7.2",
"@fortawesome/free-solid-svg-icons": "^5.7.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@next/bundle-analyzer": "^9.3.4",
"@reduxjs/toolkit": "^1.3.4",
"@sentry/browser": "^5.6.3",
"@sentry/node": "^5.6.2",
"@types/classnames": "^2.2.7",
"@types/markdown-to-jsx": "^6.11.0",
"@types/react-redux": "^7.1.0",
"@types/react-select": "^3.0.5",
"@types/react-stripe-elements": "^1.1.10",
"@types/redux-thunk": "^2.1.0",
"@types/styled-components": "^5.1.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"abortcontroller-polyfill": "^1.2.3",
"babel-jest": "^24.1.0",
"classnames": "^2.2.5",
"file-loader": "^6.0.0",
"focus-visible": "^4.1.5",
"isomorphic-fetch": "^2.2.1",
"markdown-to-jsx": "^6.11.1",
"next": "^10.0.0",
"next-plausible": "^2.1.4",
"next-redux-wrapper": "^5.0.0",
"postcss-focus-visible": "^4.0.0",
"react-day-picker": "^7.3.0",
"react-ga": "^2.5.7",
"react-redux": "^7.1.0",
"react-select": "^3.0.8",
"react-spring": "^8.0.20",
"react-stripe-elements": "^5.0.1",
"react-turnstile": "^1.1.3",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sharp": "^0.33.2",
"styled-components": "^5.1.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"url-loader": "^4.0.0"
},
"resolutions": {
"@types/react": "^16.8.1"
},
"browserslist": [
"> 1% in NO",
"not ie 11",
"not op_mini all"
],
"volta": {
"node": "16.19.0"
}
}