-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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": "pocket-analytics",
"version": "0.0.0",
"private": true,
"scripts": {
"postinstall": "husky install",
"start": "node ./bin/www",
"watch:node": "nodemon ./bin/www",
"build:assets": "NODE_ENV=production rollup -c",
"watch:assets": "rollup -c --watch",
"build": "npm run build:assets",
"format": "prettier --write \"**/*.js\"",
"lint": "eslint ."
},
"dependencies": {
"chart.js": "^2.9.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.18.2",
"got": "^12.5.3",
"http-errors": "~1.6.3",
"http-status-codes": "^2.2.0",
"moment": "^2.29.4",
"morgan": "~1.9.1",
"purecss": "^2.0.5",
"twig": "~0.10.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"commitlint": "^11.0.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.20",
"prettier": "^2.2.1",
"rollup": "^2.39.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"lint-staged": {
"*.js": "eslint"
}
}