This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.54 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "omsorgspengesoknad",
"version": "2.0.0",
"description": "Selvbetjeningsløsning for søknad om omsorgspenger",
"repository": "https://github.com/navikt/omsorgspengesoknad",
"license": "MIT",
"author": "NAV",
"scripts": {
"build": "node src/build/scripts/production-build.js",
"start": "node ./src/build/scripts/start-dev.js",
"dev-api": "PORT=8088 node ./server/api-mock.js",
"dev": "npm-run-all -p dev-api start-no-decorator",
"start-no-decorator": "node ./src/build/scripts/start-dev-no-decorator.js",
"start-express": "node ./server.js",
"start-api-mock": "PORT=8088 node ./server/api-mock.js",
"test": "react-scripts test --watchAll=false --env=jsdom --runInBand",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(@navikt)).*\\.js$"
],
"resetMocks": false
},
"dependencies": {
"@navikt/sif-common-amplitude": "^2.6.2",
"@navikt/sif-common-core": "^11.3.0",
"@navikt/sif-common-formik": "23.1.1",
"@navikt/sif-common-sentry": "^0.3.1",
"@navikt/sif-common-soknad": "^5.3.1",
"@snyk/protect": "^1.1064.0",
"axios": "^0.27.2",
"busboy": "^1.6.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^5.1.1",
"history": "^5.3.0",
"http-proxy-middleware": "^2.0.6",
"jose": "^4.11.1",
"jsdom": "^20.0.3",
"mustache-express": "^1.3.2",
"object-hash": "^3.0.0",
"openid-client": "^5.3.1",
"promise": "^8.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.25.1",
"react-router-dom": "^5.3.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@types/enzyme": "^3.10.12",
"@types/jest": "^29.1.0",
"@types/object-hash": "^2.2.1",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"babel-polyfill": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"css-loader": "^6.7.2",
"enzyme": "^3.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.5.0",
"jest-environment-jsdom": "^29.1.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"react-scripts": "^5.0.1",
"source-map-loader": "^4.0.1",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-dev-server": "^4.11.1"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"snyk": true
}