-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "backend-web",
"version": "1.0.0",
"description": "* node.js\r * Express\r * typescript",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"test": "mocha --timeout 10000 --require ts-node/register 'src/test/**/*.ts'",
"dev": "nodemon --delay 2.5 src/index.ts",
"eslint": "npx eslint src/**/* --resolve-plugins-relative-to .",
"fix": "npx eslint src/**/* --resolve-plugins-relative-to . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curriculum-of-coding/BackEnd-web.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/curriculum-of-coding/BackEnd-web/issues"
},
"homepage": "https://github.com/curriculum-of-coding/BackEnd-web#readme",
"dependencies": {
"@types/mongoose": "~5.10.3",
"@types/mongoose-auto-increment": "^5.0.33",
"express": "^4.17.1",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/express": "^4.17.10",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"lint-staged": "^10.0.0-1",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"mongoose": "~5.10.3",
"mongoose-auto-increment": "^5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --resolve-plugins-relative-to .",
"prettier --write",
"git add"
]
}
}