-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "backend-boilerplate",
"version": "0.0.1",
"description": "Opinionated, minmal, TypeScript/Node.js, layered architecture with DDD flavour backend project boilerplate.",
"main": "main.ts",
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine/jasmine.json",
"pretty": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start": "ts-node src/main.ts",
"watch": "tsnd -r tsconfig-paths/register --respawn src/main.ts"
},
"keywords": [
"backend",
"boiplerplate",
"typescript"
],
"author": "Stanislav Jakuschevskij",
"license": "MIT",
"devDependencies": {
"@tsconfig/node18": "1.0.1",
"@types/express": "4.17.15",
"@types/jasmine": "4.3.1",
"@types/uuid": "9.0.0",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"jasmine": "4.5.0",
"jasmine-spec-reporter": "7.0.0",
"prettier": "2.8.1",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"tsconfig-paths": "4.1.2",
"typescript": "4.9.4"
},
"dependencies": {
"express": "4.18.2",
"uuid": "9.0.0",
"yup": "1.0.0-beta.7"
}
}