-
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.35 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@zarm-design/cli",
"version": "0.0.48",
"description": "Cli Tools for Zarm Design Project",
"keywords": [
"zarm-cli",
"cli",
"react",
"tools"
],
"license": "MIT",
"author": "jerome.lin@zhongan.com",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"zarm": "./bin/zarm.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "yarn clean && tsc --build --force",
"clean": "rimraf dist",
"dev": "tsc -w",
"prepare": "yarn build",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/helper-string-parser": "^7.21.5",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.10",
"@babel/runtime-corejs3": "^7.13.10",
"@sentry/webpack-plugin": "^1.15.1",
"babel-jest": "^26.5.2",
"babel-loader": "^8.2.2",
"chalk": "^4.1.1",
"change-case": "^4.1.2",
"commander": "^7.2.0",
"css-loader": "^6.7.3",
"execa": "^3.3.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-sass": "^5.1.0",
"html-webpack-plugin": "^5.5.0",
"import-local": "^3.0.2",
"jest": "^26.5.3",
"metro-react-native-babel-preset": "^0.63.0",
"mini-css-extract-plugin": "^2.7.2",
"mkdirp": "^0.5.1",
"postcss": "^8.4.21",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.1",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "^0.63.2",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"signale": "^1.4.0",
"terser-webpack-plugin": "^5.1.2",
"through2": "^3.0.1",
"ts-jest": "^26.5.0",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.2.1",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.2"
},
"devDependencies": {
"@types/node": "^15.3.0",
"@types/webpack": "^5.28.0",
"ts-node": "^10.9.1"
},
"tags": [
"zarm",
"zarm-cli",
"zhongan"
]
}