-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 929 Bytes
/
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
{
"devDependencies": {
"@jest/globals": "^29.3.1",
"@parcel/transformer-sass": "^2.8.2",
"@parcel/transformer-typescript-tsc": "^2.8.2",
"@parcel/validator-typescript": "^2.8.2",
"@types/axios": "^0.14.0",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"axios": "^1.2.1",
"cypress": "^12.1.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"parcel": "^2.8.2",
"process": "^0.11.10",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"scripts": {
"test": "npx jest --watchAll",
"start": "npx parcel ./src/index.html ./src/html/checkout.html ./src/html/contact.html ./src/html/products.html ./src/html/shoppingcart.html",
"cypress": "npx cypress open"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"html"
]
}
}