forked from Laboratoria/LIM015-social-network
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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": "social-network",
"version": "1.0.0",
"description": "Social Network @ Laboratoria",
"main": "src/index.html",
"keywords": [
"javascript",
"firebase",
"jest"
],
"license": "MIT",
"scripts": {
"htmlhint": "htmlhint dist/*.html ",
"eslint": "eslint --ext .js src/ test/",
"stylelint": "stylelint --aei src/**/*.css",
"pretest": "npm run htmlhint && npm run eslint && npm run stylelint",
"test": "jest --verbose --coverage",
"start": "serve src/",
"open-coverage-report": "opener ./coverage/lcov-report/index.html",
"deploy": "gh-pages -d src"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"babel-jest": "^27.0.1",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.1.0",
"firebase-mock": "^2.3.2",
"htmlhint": "^0.14.0",
"jest": "^27.0.1",
"mock-cloud-firestore": "^0.12.0",
"regenerator-runtime": "^0.13.1",
"serve": "^12.0.0",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"firebase": "^9.0.1",
"gh-pages": "^3.2.3"
}
}