-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.96 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"test": "jest",
"scripts": {
"start": "npx cross-env NODE_ENV=production node dist/index.js",
"build": "npx tsc",
"dev": "npx cross-env NODE_ENV=development nodemon src/index.ts",
"format": "prettier --write \"**/*.{js,ts,json}\"",
"test": "npx cross-env NODE_ENV=test jest",
"test:watch": "npx cross-env jest --watch",
"test:CI": "npx cross-env CI=true jest",
"typecheck": "tsc --noEmit"
},
"author": "Coding Bunker DEV team",
"license": "ISC",
"dependencies": {
"@admin-bro/design-system": "^1.7.0",
"@admin-bro/express": "^3.0.0",
"@admin-bro/typeorm": "^1.2.0",
"@octokit/rest": "^18.0.9",
"@scout_apm/scout-apm": "^0.2.0",
"admin-bro": "3.3.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"class-transformer": "^0.3.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.1",
"flat": "^5.0.2",
"helmet": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"loader": "^2.1.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pg": "^8.3.0",
"react-select": "^3.1.1",
"reflect-metadata": "^0.1.13",
"rehype-sanitize": "^3.0.1",
"remark": "^12.0.1",
"remark-slate": "^1.2.2",
"slate": "^0.59.0",
"slate-history": "^0.59.0",
"slate-react": "^0.59.0",
"typeorm": "^0.2.25",
"winston": "^3.3.3",
"yup": "^0.29.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/express-formidable": "^1.0.4",
"@types/express-session": "^1.17.0",
"@types/faker": "^4.1.12",
"@types/flat": "^5.0.1",
"@types/jest": "^26.0.10",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.159",
"@types/logform": "^1.10.1",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.27",
"@types/react-select": "^3.0.26",
"@types/supertest": "^2.0.10",
"@types/yup": "^0.29.5",
"cross-env": "^7.0.2",
"faker": "^4.1.0",
"husky": "^4.2.5",
"jest": "^26.4.0",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "cross-env lint-staged && yarn test:CI"
}
},
"lint-staged": {
"*.ts": "prettier --write"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/?(*.)+(spec|test).+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"setupFiles": [
"dotenv-safe/config"
],
"testTimeout": 10000
},
"nodemonConfig": {
"delay": "2500",
"ext": "js,ts,tsx,json"
}
}