-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "aap-sanity",
"type": "module",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"scripts": {
"start": "NODE_ENV=production node dist/src/index.js",
"dev": "NODE_ENV=development node dist/src/index.js",
"build": "tsc -p tsconfig.json",
"prepare": "husky",
"test": "vitest --run",
"gentypes": "openapi-typescript http://localhost:8082/openapi.json -o src/types/schema.d.ts"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"eslint --fix"
]
},
"prettier": "@navikt/aap-felles-prettier",
"dependencies": {
"@navikt/aap-felles-utils": "^2.0.28",
"@navikt/aap-sanity-schema-types": "^0.0.5",
"@navikt/oasis": "^3.4.0",
"@sanity/client": "^6.24.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@navikt/aap-felles-prettier": "^2.0.8",
"@types/express": "^4.17.21",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"openapi-typescript": "^7.4.3",
"prettier": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.5"
},
"packageManager": "yarn@4.5.1"
}