This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.76 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
{
"name": "veilarbmaofs",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cross-env REACT_APP_DEV=true craco start",
"build": "craco build",
"build:mock": "cross-env PUBLIC_URL=/veilarbmaofs REACT_APP_DEV=true craco build",
"test": "echo not implemented",
"prettier": "prettier --write 'src/**/*.ts{,x}'",
"prepare": "husky install",
"pre-commit": "lint-staged --verbose"
},
"dependencies": {
"@craco/craco": "7.1.0",
"@navikt/aksel-icons": "2.9.8",
"@navikt/ds-css": "2.9.8",
"@navikt/ds-css-internal": "2.9.8",
"@navikt/ds-icons": "2.9.8",
"@navikt/ds-react": "2.9.8",
"@navikt/ds-react-internal": "2.9.8",
"@navikt/fnrvalidator": "1.3.0",
"@navikt/navspa": "5.0.1",
"axios": "^0.27.2",
"classnames": "^2.3.2",
"constate": "3.3.2",
"craco-less": "2.1.0-alpha.0",
"moment": "2.29.4",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-app-polyfill": "3.0.0",
"react-collapse": "^5.1.0",
"react-dom": "17.0.2",
"react-modal": "3.16.1",
"react-scripts": "5.0.1"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/react": "17.0.47",
"@types/react-collapse": "^5.0.0",
"@types/react-dom": "17.0.13",
"@types/react-modal": "3.13.1",
"cross-env": "^7.0.3",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"msw": "0.42.3",
"prettier": "2.8.8",
"typescript": "4.7.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{json,less,css,md}": [
"prettier --write"
],
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --config .eslintrc.lintstaged.json"
]
},
"msw": {
"workerDirectory": "public"
}
}