-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
32 lines (32 loc) · 958 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
{
"name": "visit-counter",
"version": "0.0.0",
"private": false,
"scripts": {
"start": "node ./bin/www.js",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "npm run prettier:fix && npm run lint:fix"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.29",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.2",
"express": "~4.16.1",
"firebase": "^9.9.4",
"morgan": "~1.9.1"
},
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"prettier": "2.7.1"
}
}