-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 KB
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
{
"name": "quarentena.tech",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon src/app.js",
"build": "sucrase ./src -d ./dist --transforms imports",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yarn eslint --fix src --ext .js"
},
"author": "CollabCode",
"license": "MPL-2.0",
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-minify": "^1.0.0",
"nunjucks": "^3.2.1",
"postcss-middleware": "^1.1.4",
"sucrase": "^3.12.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"nodemon": "^2.0.2",
"prettier": "^2.0.4"
}
}