-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.16 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
58
{
"name": "users-hierarchy",
"version": "1.0.0",
"repository": "https://github.com/hjemmel/users-hierarchy",
"author": "Hans Jakob Emmel <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "node dist/index.js",
"build": "ts-node build.ts && tsc",
"dev": "cross-env NODE_ENV=development nodemon server/index.ts | pino-pretty",
"dev:debug": "cross-env NODE_ENV=development nodemon --inspect server/index.ts | pino-pretty",
"test": "cross-env DOTENV_CONFIG_PATH=.env.test jest --colors",
"test:coverage": "cross-env DOTENV_CONFIG_PATH=.env.test jest --colors --coverage",
"test:ci": "cross-env DOTENV_CONFIG_PATH=.env.test jest --ci --runInBand --reporters=default --reporters=jest-junit",
"lint": "eslint 'server/**/*.ts'",
"prettier": "prettier --write 'server/**/*.ts'",
"type:check": "tsc --noEmit"
},
"dependencies": {
"bluebird": "3.7.2",
"body-parser": "1.20.2",
"cookie-parser": "1.4.6",
"dotenv": "10.0.0",
"express": "4.19.2",
"express-openapi-validator": "3.17.2",
"http-status-codes": "2.3.0",
"pino": "6.14.0",
"swagger-ui-express": "4.6.3"
},
"devDependencies": {
"@types/bluebird": "3.5.42",
"@types/cookie-parser": "1.4.7",
"@types/dotenv": "6.1.1",
"@types/express-serve-static-core": "4.19.2",
"@types/jest": "26.0.24",
"@types/multer": "1.4.11",
"@types/pino": "6.3.12",
"@types/shelljs": "0.8.15",
"@types/swagger-ui-express": "4.1.6",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"cross-env": "7.0.3",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.4.1",
"jest": "25.5.4",
"jest-junit": "10.0.0",
"nodemon": "2.0.22",
"pino-pretty": "3.6.1",
"prettier": "2.8.8",
"shelljs": "0.8.5",
"ts-jest": "25.5.1",
"ts-node": "10.9.2",
"typescript": "3.9.10"
}
}