-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "armold-template",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc -p .",
"dev": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"test": "jest --collectCoverage",
"start": "node ./dist/server.js",
"lint": "eslint --fix --ext .ts ."
},
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"clearMocks": true
},
"dependencies": {
"@types/express": "^4.17.9",
"armold-microservices": "^1.0.0-beta",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"knex": "^0.21.1",
"mysql": "^2.18.1",
"objection": "^2.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.10.1",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-security": "^1.4.0",
"jest": "^25.4.0",
"prettier": "^2.0.4",
"ts-jest": "^25.4.0",
"ts-node": "3.3.0",
"tsc-watch": "^4.2.3",
"typescript": "^3.9.3"
}
}