-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "rcm-mobile",
"version": "2.0.1",
"description": "第二版 React 移动端组件库",
"main": "dist/rcm-mobile",
"types": "./components",
"files": [
"lib",
"dist",
"docs",
"LICENSE",
"README.md",
"package.json",
"tsconfig.json",
"components"
],
"repository": {
"type": "git",
"url": "https://github.com/rc-mobile/rcm-mobile"
},
"scripts": {
"dev": "cross-env RUN_ENV=DEV node server.js",
"start": "digo yml && npx styleguidist server",
"build:es": "cross-env RUN_ENV=ES webpack",
"build:lib": "cross-env RUN_ENV=PROD webpack",
"build:demo": "cross-env RUN_ENV=DEMO webpack",
"build:mobile": "cross-env RUN_ENV=MOBILE webpack",
"build:doc": "cross-env RUN_ENV=DOC npx styleguidist build",
"deploy:doc": "digo yml && npm run build:doc && npm run build:mobile",
"deploy": "npm run build:es && npm run build:lib",
"bundle": "cross-env RUN_ENV=BUNDLE webpack"
},
"author": "sayll",
"license": "ISC",
"dependencies": {
"classnames": "^2.2.6",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-hot-loader": "^4.8.4"
},
"devDependencies": {
"@types/classnames": "^2.2.7",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.2",
"cross-env": "^5.2.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^4.0.0-beta.5",
"js-yaml": "^3.13.1",
"rcm-tools": "0.0.19",
"react-docgen-typescript": "^1.12.4",
"react-styleguidist": "^9.1.3"
},
"externalDependencies": [
"x-tools",
"classnames"
],
"styleGlobal": [
"./components/style/global.scss"
]
}