-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "wcass",
"version": "0.0.1",
"description": "",
"main": "build/server.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "ts-node-dev --respawn ./src/server.ts",
"migrate": "sequelize-cli db:migrate"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=17"
},
"homepage": "#readme",
"dependencies": {
"@sinclair/typebox": "^0.23.4",
"dotenv": "^10.0.0",
"fastify": "^3.27.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/json-schema": "^7.0.9",
"@types/node": "^17.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5"
}
}