-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.82 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
{
"name": "@navikt/fyllut-backend",
"version": "1.0.0",
"private": true,
"description": "",
"main": "dist/server.mjs",
"type": "module",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"start": "cross-env-shell NODE_ENV=development vite",
"build": "tsc && vite build",
"preview": "cross-env-shell NODE_ENV=development NO_FORM_VALIDATION=true FYLLUT_BUILD_DIR=\"../../fyllut/dist\" PORT=3001 \"node bin/copyDotEnvTestToDist.js && cd dist && node server.mjs\"",
"check-types": "tsc",
"clean": "rimraf dist coverage node_modules",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage"
},
"dependencies": {
"@elastic/ecs-morgan-format": "^1.5.1",
"@navikt/nav-dekoratoren-moduler": "^2.1.3",
"@navikt/skjemadigitalisering-shared-domain": "1.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-correlation-id": "^2.0.1",
"express-rate-limit": "^7.1.5",
"glob": "^10.3.4",
"i18n-iso-countries": "^7.10.0",
"jose": "^5.2.1",
"jsonwebtoken": "^9.0.2",
"luxon": "^3.4.4",
"morgan": "^1.10.0",
"mustache-express": "^1.3.2",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"node-jose": "^2.2.0",
"prom-client": "^15.1.0",
"qs": "^6.11.2",
"react": "^18.2.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-correlation-id": "^1.2.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/mustache-express": "^1.2.5",
"@types/node": "^20.11.16",
"@types/node-fetch": "^2.6.11",
"@types/node-jose": "^1.1.13",
"@types/supertest": "^6.0.2",
"nock": "^13.5.1",
"supertest": "^6.3.4",
"vite-plugin-node": "^3.1.0"
}
}