-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.42 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
52
53
{
"name": "react-address-lookup",
"version": "4.0.0",
"description": "An address lookup React component.",
"main": "dist/index.js",
"scripts": {
"start": "npm run storybook",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "babel src -d dist --copy-files",
"prepublish": "npm run build"
},
"author": "Tom Stanley",
"license": "MIT",
"browserslist": "> 0.25%, not dead",
"repository": {
"type": "git",
"url": "https://github.com/Taelkir/react-address-lookup.git"
},
"dependencies": {
"lodash.uniqueid": "^4.0.1",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.13",
"@storybook/addons": "^6.5.13",
"@storybook/react": "^6.5.13",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.1",
"html-webpack-plugin": "^5.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env",
"minify"
]
}
}