-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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
{
"name": "wizard-icons",
"version": "0.1.20",
"private": false,
"description": "Wizard svg icons",
"main": "lib/index.js",
"module": "lib/index.js",
"homepage": "https://xsky-fe.github.io/icons/",
"files": [
"CHANGELOG.md",
"lib"
],
"scripts": {
"svgr": "svgr --config-file ./svgr.config.js --ext tsx -d src/ assets/",
"genarate": "node ./scripts/create-index.js src",
"build-react": "rm -rf src && yarn svgr && yarn genarate",
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"ts2js": "rm -rf lib && babel src --out-dir lib --extensions '.ts,.tsx'",
"clean": "rm -rf dist/bundle.js",
"build": "yarn clean && webpack --mode production",
"deploy": "yarn build && gh-pages -d dist && yarn clean"
},
"bugs": {
"url": "https://github.com/xsky-fe/icons/issues"
},
"keywords": [
"icon",
"svg"
],
"author": "wangkailang",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@svgr/cli": "^4.3.1",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-modal": "^3.8.2",
"@types/webpack-env": "^1.13.9",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"gh-pages": "^2.0.1",
"react-hot-loader": "^4.11.1",
"typescript": "^3.5.3",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.2",
"@types/styled-components": "^4.1.17",
"lodash": "^4.17.14",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-modal": "^3.9.1",
"styled-components": "^4.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/xsky-fe/icons.git"
},
"release": {
"publishDir": "lib"
}
}