-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.76 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
{
"name": "devc-core",
"version": "1.0.0",
"description": "core from certificates and wewantyou",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "lint-staged",
"start": "pm2 restart devcsp-core",
"dev": "nodemon src/server.js --ignore __tests__",
"build": "sucrase ./src -d ./dist --transforms imports"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devcsp/devcsp-core.git"
},
"author": "DevC SP",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"bugs": {
"url": "https://github.com/devcsp/devcsp-core/issues"
},
"homepage": "https://github.com/devcsp/devcsp-core#readme",
"dependencies": {
"@sentry/node": "^5.11.1",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-error": "0.0.2",
"express-async-handler": "^1.1.4",
"global": "^4.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.10",
"pm2": "^4.2.3",
"youch": "^2.0.10",
"yup": "^0.28.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.9",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"sucrase": "^3.10.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}