forked from Laboratoria/BOG005-social-network
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (42 loc) · 972 Bytes
/
package.json
File metadata and controls
43 lines (42 loc) · 972 Bytes
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
{
"name": "social-network",
"version": "1.0.0",
"description": "Social Network @ Laboratoria",
"type": "module",
"main": "src/index.html",
"keywords": [
"javascript",
"firebase",
"jest"
],
"license": "MIT",
"scripts": {
"test": "jest --coverage --env=jsdom",
"start": "serve -s src/",
"sass": "node-sass --watch src/sass/ -o src/styles/"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"babel-jest": "^27.0.1",
"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.0.1",
"regenerator-runtime": "^0.13.1",
"serve": "^13.0.2",
"stylelint": "^14.1.0",
"stylelint-config-recommended": "^6.0.0"
},
"engines": {
"node": ">=14"
},
"jest": {
"testEnvironment": "jsdom"
},
"dependencies": {
"sass": "^1.55.0"
}
}