forked from navikt/registrer-tilretteleggingsbehov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "registrer-tilretteleggingsbehov",
"version": "0.1.0",
"private": true,
"homepage": "/registrer-tilretteleggingsbehov",
"dependencies": {
"@navikt/ds-css": "^0.18.19",
"@navikt/ds-icons": "^0.8.17",
"@navikt/ds-react": "^0.19.16",
"@navikt/navspa": "^6.0.1",
"fetch-mock": "^9.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"husky": "^7.0.0",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.2",
"react-scripts": "^5.0.1"
},
"scripts": {
"start:mock": "REACT_APP_MOCK=true npm run start",
"start": "react-scripts start",
"build": "react-scripts build",
"build:mock": "REACT_APP_MOCK=true npm run build",
"eject": "react-scripts eject",
"prepare": "husky install",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"printWidth": 100
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}