-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.55 KB
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": "RevUnit",
"version": "1.0.0",
"description": "RevUnit take home assignment",
"main": "index.js",
"scripts": {
"prep-husky": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./dist && tsc",
"start": "node -r ts-node/register ./src/index.ts",
"start:watch": "nodemon",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrothaSam/RevUnit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BrothaSam/RevUnit/issues"
},
"homepage": "https://github.com/BrothaSam/RevUnit#readme",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/cors": "^8.0.0",
"@mikro-orm/core": "^5.2.2",
"@mikro-orm/sqlite": "^5.2.2",
"dotenv": "^16.0.1",
"fastify": "^4.2.0",
"ts-node": "^10.8.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/config/db/mikro-orm.config.ts",
"./dist/config/db/mikro-orm.config.ts"
]
}
}