forked from maximebrugel/nodeplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 2.02 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.02 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
60
61
62
63
64
{
"name": "nodeplate",
"version": "0.0.1",
"description": "Node.js REST API boilerplate",
"license": "UNLICENCED",
"author": "Maxime Brugel",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/src/app.js",
"build": "tsc",
"dev": "cross-env NODE_ENV=development nodemon --watch \"src/**/*.ts\" --exec ts-node src/app.ts",
"checkup": "yarn run yarn:install && yarn run prettier:run && yarn run eslint:run && yarn run test",
"yarn:install": "yarn install",
"test": "yarn jest",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"prettier:run": "prettier --write \"src/**/*.ts\"",
"eslint:run": "eslint \"src/**/*.ts\""
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.7.5",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.2",
"winston": "^3.2.1",
"nodemon": "^1.19.4",
"ts-node": "^8.4.1",
"cross-env": "^6.0.3",
"saslprep": "^1.0.3"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^3.0.1",
"@types/mongoose": "^5.5.20",
"@typescript-eslint/parser": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/eslint-plugin-tslint": "^2.3.3",
"@types/jest": "^24.0.19",
"prettier": "^1.18.2",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-config-prettier": "^6.4.0",
"tslint": "^5.20.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.6.4",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"husky": "^3.0.9",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn checkup"
}
}
}