-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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": "sd-0x-project-shopping-cart",
"version": "1.0.0",
"main": "script.js",
"scripts": {
"start": "vite",
"dev": "vite --open",
"test": "jest --watchAll",
"test:coverage": "jest --coverage",
"cy": "cypress run",
"cy:open": "cypress open --e2e --browser chrome",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json . --ext .js",
"lint:styles": "stylelint *.css --config .stylelintrc.json --ignore-disables --allow-empty-input"
},
"jest": {
"coverageReporters": [
"text",
"html"
],
"collectCoverageFrom": [
"**/helpers/fetchFunctions.js"
],
"testMatch": [
"**/tests/**/*.test.js?(x)"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"author": "",
"license": "ISC",
"engines": {
"node": "16 || 18"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@types/jest": "^29.2.2",
"babel-jest": "^29.2.1",
"cypress": "10.6.0",
"cypress-multi-reporters": "1.6.1",
"eslint-config-trybe-frontend": "1.3.1",
"jest": "28.1.3",
"mocha": "10.0.0",
"mochawesome": "7.1.3",
"mochawesome-merge": "4.2.1",
"mochawesome-report-generator": "6.2.0",
"stylelint": "14.11.0",
"stylelint-config-standard": "28.0.0"
},
"dependencies": {
"vite": "^3.1.8"
}
}