-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
63 lines (63 loc) · 1.95 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
{
"name": "react-tiny-link",
"version": "3.6.1",
"main": "lib/index.js",
"license": "MIT",
"keywords": [
"react",
"link",
"preview",
"component",
"cards",
"cors"
],
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-dom": "*"
},
"typings": "src/lib/index.d.ts",
"scripts": {
"start": "set NODE_ENV=local && webpack-dev-server --config webpack/webpack.config.dev.js --content-base src/demo/dist --hot --inline --open --history-api-fallback",
"build:clean": "rimraf lib/",
"build:lib": "webpack --config ./webpack/webpack.config.js && webpack --config ./webpack/webpack.config.min.js",
"build:gh-pages": "rimraf docs/ && mkdir -p docs && cp -a src/demo/dist/* docs/ && NODE_ENV=production webpack --config ./webpack/webpack.config.gh-pages.js",
"version:patch": "npm version patch",
"push:git": "git push --tags origin master --quiet",
"commit:build": "git add . && git commit -m \"Deploy commit\" --quiet & npm run push:git",
"create:patch": "npm run version:patch && npm run push:git"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/node": "^11.12.1",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"awesome-typescript-loader": "^5.2.1",
"conventional-github-releaser": "^3.1.2",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"node": "^11.12.0",
"prettier": "^1.16.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"styled-components": "^4.1.3",
"typescript": "^3.3.4000",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-inline-svg-loader": "^0.1.1",
"webpack-merge": "^4.2.1",
"yarn": "^1.22.0"
}
}