-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "vis-stilling",
"version": "0.1.0",
"private": true,
"homepage": "/arbeid/stilling",
"dependencies": {
"@navikt/ds-css": "^5.17.3",
"@navikt/ds-icons": "^3.4.3",
"@navikt/ds-react": "^5.17.3",
"amplitude-js": "^8.21.2",
"classnames": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/amplitude-js": "^8.16.2",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"fetch-mock": "^9.11.0",
"husky": "^9.0.10",
"prettier": "^3.2.4",
"pretty-quick": "^4.0.0",
"vite": "^5.1.3",
"vitest": "^1.3.0"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"format": "prettier --write .",
"start:mock": "REACT_APP_MOCK=true npm start",
"server:install": "cd server && npm ci",
"server:build": "tsc -b server/tsconfig.json",
"server:start": "node server/build/server.js",
"prepare": "husky install"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"printWidth": 100
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}