-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "michal-team-projekt-1",
"source": "src/index.html",
"type": "module",
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"postinstall": "husky install"
},
"devDependencies": {
"@testing-library/dom": "8.11.1",
"@testing-library/jest-dom": "5.15.1",
"@testing-library/user-event": "13.5.0",
"cross-env": "7.0.3",
"husky": "7.0.4",
"jest": "27.4.3",
"jest-fetch-mock": "3.0.3",
"jest-transform-stub": "^2.0.0",
"lint-staged": "12.1.2",
"msw": "0.35.0",
"parcel": "2.0.1",
"parcel-reporter-static-files-copy": "1.3.4",
"prettier": "2.5.0",
"rimraf": "3.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": "(spec|test)[.](js|ts)",
"setupFiles": [
"./test/setupJest.js"
],
"transform": {
".+\\.(svg|css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npx prettier --write"
],
"*.{json,md,yaml,yml,scss,css}": [
"npx prettier --write"
]
}
}