This repository has been archived by the owner on Jan 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
129 lines (129 loc) · 3.45 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "grc-stamp",
"version": "1.1.2",
"description": "",
"main": "dist/index.js",
"port": 7000,
"private": true,
"nodemonConfig": {
"ignore": [
".node_persits/**/*"
]
},
"scripts": {
"dev": "npm-run-all -p build:watch start:dev",
"build": "tsc",
"build:watch": "tsc -w",
"clean": "rimraf ./dist",
"start": "node dist/index.js",
"start:dev": "nodemon dist/index.js",
"test:lint": "eslint .",
"test:app": "NODE_ENV=testing jest --runInBand --verbose",
"typecheck": "tsc --project tsconfig.json --noEmit --pretty false",
"test": "npm run test:app && npm run test:lint && npm run typecheck",
"test:start-test-container": "docker-compose up -d",
"test:stop-test-container": "docker-compose down",
"prisma": "npx prisma generate",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/gridcat/grc-stamp.git"
},
"author": "",
"license": "ISC",
"lint-staged": {
"{src,test,tools}/**/*.ts": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/chai": "^4.2.22",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.9",
"@types/ioredis": "^4.26.6",
"@types/jest": "^27.0.3",
"@types/method-override": "^0.0.32",
"@types/morgan": "^1.9.3",
"@types/nconf": "^0.10.0",
"@types/node": "^15.14.2",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@types/yayson": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"faker": "^5.5.3",
"husky": "^7.0.1",
"jest": "^27.3.1",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prisma": "^2.26.0",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@prisma/client": "^2.26.0",
"axios": "^0.21.2",
"colors": "^1.4.0",
"express": "^4.17.1",
"gridcoin-rpc": "^3.0.2",
"http-status-codes": "^2.1.4",
"ioredis": "^4.27.6",
"joi": "^17.4.2",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"nconf": "^0.11.2",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"winston": "^3.3.3",
"yayson": "^2.1.0"
}
}