-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.86 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.86 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
47
48
49
50
51
52
{
"name": "workshop-frontend-testing",
"version": "1.0.0",
"scripts": {
"clean": "rm -rf .parcel-cache dist",
"dev": "parcel src/index.html",
"build": "npm run clean && parcel build src/index.html --dist-dir dist",
"test:unit": "mocha --no-timeouts -r test/register-babel.js 'test/unit/calculator.spec.js'",
"test:integration": "mocha --no-timeouts -r test/register-babel.js 'test/integration/Calculator.spec.js'",
"test:e2e": "APPLITOOLS_API_KEY=lFeoCZ1L6orTv8VegcPxR103QnT0uLjUakgNJrgdQsVhk110 mocha --no-timeouts -r test/register-babel.js 'test/e2e/*.spec.js'",
"jest:integration": "jest 'test/integration/jest/Calculator.spec.js'",
"eslint": "eslint test src"
},
"devDependencies": {
"@applitools/eyes-selenium": "^4.72.0",
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/register": "^7.22.15",
"@parcel/transformer-sass": "^2.10.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^12.1.5",
"babel-jest": "^29.7.0",
"babel-loader": "^8.3.0",
"chai": "^4.1.2",
"chai-jest-snapshot": "^2.0.0",
"chromedriver": "^119.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^5.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^11.6.2",
"mocha": "^5.0.5",
"parcel": "^2.10.3",
"react-test-renderer": "^16.14.0",
"selenium-webdriver": "^4.15.0"
},
"dependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
}
}