forked from xivapi/nodestone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "@the-convocation/nodestone",
"version": "0.1.1",
"main": "lib/index.js",
"license": "MIT",
"typings": "types/index.d.ts",
"scripts": {
"build": "tsc",
"commit": "cz",
"format": "prettier --write \\\"src/**/*.ts\\\" \\\"test/**/*.ts\\\"",
"prepare": "husky install",
"express:start": "rimraf dist && tsc -p tsconfig.json && node dist/lib/server.js",
"copyfiles": "copyfiles package.json readme.md dist",
"release": "rimraf dist && tsc -p tsconfig.json && yarn run copyfiles && npm publish ./dist"
},
"dependencies": {
"@types/express": "^4.17.13",
"axios": "^0.21.0",
"express": "^4.17.1",
"http-status-codes": "^2.2.0",
"linkedom": "^0.13.0",
"lodash": "^4.17.21",
"regex-translator": "^0.2.7",
"typescript": "^4.4.4"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@types/jsdom": "^16.2.13",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": ">=6",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"rimraf": "^2.6.2"
},
"resolutions": {
"commitizen/minimist": "1.2.6",
"yargs@npm:12.0.5/yargs-parser": "13.1.2"
},
"engines": {
"node": ">= 16.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"prettier --write"
]
}
}