-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "montry-hall",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"start": "node dist/src/index.js",
"build": "tsc",
"test": "mocha --require ts-node/register 'test/**/*.spec.ts' --exit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.17",
"crypto": "^1.0.1",
"express": "^4.18.2",
"node-typescript": "^0.1.3",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-http": "^4.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"ts-node": "^10.9.1"
}
}