-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
50
51
{
"name": "another-react-component-library",
"version": "0.0.1",
"description": "This is just another React component library",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run test",
"build": "webpack --mode production",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest --coverage",
"debug-test": "jest --coverage --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casvil/another-react-library-component.git"
},
"author": "David Casanellas",
"license": "",
"bugs": {
"url": "https://github.com/casvil/another-react-library-component/issues"
},
"homepage": "https://github.com/casvil/another-react-library-component#readme",
"dependencies": {
"moment": "^2.29.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/builder-webpack5": "^6.3.7",
"@storybook/manager-webpack5": "^6.3.7",
"@storybook/react": "^6.3.7",
"@testing-library/react": "^12.1.2",
"babel-jest": "^27.2.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^4.0.0",
"jest": "^27.2.5",
"path": "^0.12.7",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
}
}