-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 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
58
59
{
"name": "typescript-solid-architecture",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development nodemon --exec ts-node -r ./src/index.ts",
"start": "node ./dist/src/index.js",
"prod": "npm run build && npm run start",
"test": "NODE_ENV=development env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register '*/**/*.test.ts'",
"format": "npx prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@vtjs/auth": "^0.2.0",
"@vtjs/cache": "^0.1.5",
"@vtjs/common": "^0.1.9",
"@vtjs/core": "^0.2.6",
"@vtjs/mongoose": "^0.1.8",
"@vtjs/rabbitmq": "^0.1.0",
"axios-retry": "^3.1.9",
"bcrypt": "^5.0.1",
"dotenv": "^9.0.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.2.18",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/mongoose": "^5.10.5",
"@types/node": "^15.0.3",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"sinon": "^10.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{js,ts,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}