-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "@kth/server",
"version": "4.1.0",
"description": "Module for initializing an Express server in a Node.js application.",
"main": "index.js",
"scripts": {
"lint": "eslint \"**/*.js\" --quiet",
"lint-v": "eslint \"**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"build": "./build.sh",
"prepare": "if [ -f ./node_modules/.bin/husky ]; then husky install; fi"
},
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-server"
},
"bugs": {
"url": "https://github.com/KTH/kth-node-server/issues"
},
"homepage": "https://github.com/KTH/kth-node-server#readme",
"license": "MIT",
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"dependencies": {
"express": "^4.18.1"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.0.10",
"@kth/log": "^4.0.5",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"node-fetch": "^2.6.7",
"pem": "^1.14.6",
"prettier": "^3.3.3",
"pretty-quick": "^3.1.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"// (jest)": "configuration for jest",
"jest": {
"clearMocks": true,
"notifyMode": "failure-change",
"testEnvironment": "node",
"verbose": true
}
}