-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (53 loc) · 1.48 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
{
"name": "react-component-lib20",
"version": "1.0.0",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/react": "^6.3.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.6",
"@types/react": "^16.14.14",
"@types/react-dom": "^16.9.14",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"node-sass": "^7.0.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-typescript2": "^0.29.0",
"sass": "^1.53.0",
"sass-loader": "^10.2.0",
"ts-jest": "^28.0.7",
"typescript": "^4.4.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {},
"scripts": {
"build": "rollup -c",
"storybook": "start-storybook -p 6006",
"storybook:export": "build-storybook",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
}
}