-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.27 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
{
"name": "unit-testing",
"license": "UNLICENSED",
"private": true,
"scripts": {
"test": "npm run watch -- --colors --collect-coverage",
"test:all": "npm run watch:all -- --colors --collect-coverage",
"watch": "npx jest --watch",
"watch:all": "npx jest --watchAll",
"debug": "node --inspect-brk --inspect ./node_modules/jest/bin/jest -i",
"format": "prettier \"tests/**/*.js\" --write",
"lint": "npx eslint \"tests/**/*.js\"",
"project:clean": "rm -rf dist",
"project:reset": "rm -rf node_modules"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"autoprefixer": "^10.2.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"prettier-eslint": "^11.0.0"
}
}