-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 948 Bytes
/
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
{
"name": "lil-shorty",
"version": "1.0.0",
"description": "",
"main": "index.js",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"dev": "NODE_ENV=development nodemon index.js",
"start": "node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "12.x"
},
"repository": {
"url": "https://github.com/mbchoa/lil-shorty"
},
"dependencies": {
"env-schema": "^1.1.0",
"fastify": "^3.2.0",
"fastify-helmet": "^5.0.0",
"fastify-static": "^3.2.0",
"monk": "^7.3.1",
"nanoid": "^3.1.12"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
}
}