-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 1.9 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "store-locator",
"version": "1.1.5",
"description": "A drop-in module for a website that shows a google map with list of stores in the sidebar.",
"main": "dist/store-locator.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --env.prod",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "yarn build",
"release": "release-it"
},
"author": "Dmitriy Nevzorov",
"license": "MIT",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"hooks": {
"before:init": [
"yarn build"
]
}
},
"dependencies": {
"@babel/runtime": "^7.7.7",
"classnames": "^2.2.6",
"p-map": "^3.0.0",
"preact": "^10.2.1"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-transform-react-jsx": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^6.0.1",
"prettier": "1.19.1",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}