-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "taroToWeb",
"version": "1.0.0",
"private": true,
"description": "将 taro 项目源码,转为可读性较高的(编译前的) web 项目源码,方便项目从小程序迁移到 web。",
"templateInfo": {
"name": "default",
"typescript": true,
"css": "sass"
},
"scripts": {
"webv0": "ts-node src/core/v0/index.ts",
"webv1": "ts-node src/core/v1/index.ts",
"webv2": "ts-node src/core/v2/index.ts",
"try": "ts-node src/core/try.ts"
},
"browserslist": [
"last 3 versions",
"Android >= 4.1",
"ios >= 8"
],
"author": "",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@types/fs-extra": "^9.0.8",
"babel-plugin-jsx": "^1.2.0",
"fs-extra": "^9.1.0",
"prettier": "^2.2.1",
"react": "^16.10.0",
"react-dom": "^16.10.0",
"recast": "^0.20.4"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/plugin-transform-typescript": "^7.13.0",
"@types/react": "^16.0.0",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^2.x",
"@typescript-eslint/parser": "^2.x",
"babel-preset-taro": "3.0.23",
"ejs": "^3.1.6",
"eslint": "^6.8.0",
"eslint-config-taro": "3.0.23",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-react-hooks": "^1.6.1",
"stylelint": "9.3.0",
"ts-node": "^9.1.1",
"typescript": "^3.7.0"
}
}