-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "@wizardtales/pow-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"pretest": "eslint index.js lib",
"lintfix": "lint-staged",
"prepare": "if [ \"${CI}\" = \"\" ]; then husky install; fi"
},
"lint-staged": {
"*.js": [
"pretty-quick --staged",
"git update-index",
"eslint --fix"
]
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/static": "^8.0.3",
"@isaacs/ttlcache": "^1.4.1",
"bluebird": "^3.7.2",
"fastify": "^5.1.0",
"randomstring": "^1.3.0",
"rc": "^1.2.8",
"rc_array": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint_d": "^12.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"nodemon": "^1.19.4",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"sinon": "^6.3.5",
"sinon-stub-promise": "^4.0.0"
},
"author": "",
"license": "MIT"
}