-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "PokemonApi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"types": "module",
"type": "module",
"scripts": {
"test": "jest",
"lint": "eslint",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage",
"server:local": "cd server && json-server --watch db.json"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@testing-library/dom": "^8.11.3",
"@testing-library/user-event": "^13.5.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"jest": "^27.4.7"
},
"prettier": {
"singleQuote": true
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"jest": {
"testEnvironment": "jsdom"
}
}