-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "soknadsveiviserproxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "npm run lint && npm run test && cross-env-shell PORT=8081 node index.js",
"startDev": "npm run lint && cross-env-shell PORT=8081 nodemon index.js",
"lint": "eslint index.js && eslint ./src && eslint ./test ",
"docker-build": "docker build -t soknadsveiviserproxy .",
"docker-run": "docker run --rm -p 8080:8080 soknadsveiviserproxy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/navikt/soknadsveiviserproxy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/navikt/soknadsveiviserproxy/issues"
},
"homepage": "https://github.com/navikt/soknadsveiviserproxy#readme",
"dependencies": {
"@sanity/client": "^6.22.4",
"@sanity/image-url": "^1.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jest": "^29.7.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}