-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 906 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
34
35
36
{
"dependencies": {
"@storybook/addon-essentials": "^6.5.6",
"@storybook/react": "^6.5.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.0",
"@types/parcel-env": "^0.0.1",
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.5",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"parcel": "^2.6.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ts-jest": "^28.0.4",
"typescript": "^4.7.2"
},
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html",
"prebuild": "npm run clean",
"clean": "rm -rf dist/*",
"test": "jest",
"storybook": "start-storybook --no-open -p 1235"
},
"browserslist": [
"> 0.2% in NO",
"not dead"
],
"prettier": {},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
}
}