forked from Laboratoria/DEV010-social-network
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.48 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
49
50
51
52
53
54
55
{
"name": "social-network",
"private": true,
"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 --env=jsdom --coverage",
"dev": "vite dev src",
"start": "npm run dev",
"build": "vite build",
"preview": "vite preview"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/mocks/fileMock.js",
"\\.(css|less)$": "<rootDir>/src/mocks/fileMock.js"
}
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^25.3.0",
"htmlhint": "^1.0.0",
"jest": "^27.5.1",
"regenerator-runtime": "^0.13.1",
"stylelint": "^14.1.0",
"stylelint-config-recommended": "^6.0.0",
"vite": "^3.1.0"
},
"engines": {
"node": ">=16.x"
},
"bootcamp": {
"createdAt": "2023-07-26T20:52:20.605Z",
"version": "6.5.0",
"commit": "3cf716dfe2a8c328a7e9dce5c030cb2c3ab8531c"
},
"dependencies": {
"firebase": "^10.3.1"
}
}