-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.06 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.06 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "hedwig-react-components",
"private": true,
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@parcel/transformer-css": "^2.8.3",
"@parcel/transformer-sass": "2.8.3",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-docs": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-viewport": "^6.5.12",
"@storybook/react": "^6.4.22",
"@types/react": "18.0.27",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"babel-jest": "^29.4.3",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-standard": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"lerna": "^6.5.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2"
},
"dependencies": {
"@babel/cli": "^7.15.7",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"babel-plugin-transform-scss": "^1.1.0",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"parcel": "2.8.3",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-router-dom": "^6.3.0",
"rimraf": "^3.0.2",
"sass": "^1.43.3",
"typescript": "5.2.2"
},
"scripts": {
"storybook": "rm -rf node_modules/.cache/storybook && start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "lerna run test",
"nuke": "lerna clean --yes && rm -rf node_modules && rm -rf packages/*/.parcel-cache",
"init": "npm install && lerna bootstrap && lerna run build"
},
"engines": {
"node": ">= 16.13.0",
"npm": ">= 8.1.0"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}