-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.72 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "nautil",
"version": "0.51.19",
"description": "Enterprise Level Business System Frontend Framework",
"main": "index.js",
"miniprogram": "miniprogram_dist",
"scripts": {
"clean": "rimraf dist miniprogram_dist dom lib native ssr web-component wechat index.js",
"build": "npm run clean && npm run build:cjs && npm run build:wechat",
"build:cjs": "cross-env NODE_ENV=production babel src --out-dir . --config-file ./babel.config.js --keep-file-extension --copy-files",
"build:wechat": "copyfiles -f src/wechat/components/dynamic/* miniprogram_dist/wechat/components/dynamic && cross-env NODE_ENV=production webpack --config .build/webpack.wechat.config.js",
"dev": "webpack-dev-server --config .examples/dev/webpack.config.js",
"postinstall": "node .scripts/files-for-wechat.js",
"eslint": "eslint src --ext js,jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangshuang/nautil.git"
},
"keywords": [
"javascript",
"framework",
"react"
],
"author": "tangshuang",
"license": "MIT",
"bugs": {
"url": "https://github.com/tangshuang/nautil/issues"
},
"homepage": "https://github.com/tangshuang/nautil#readme",
"dependencies": {
"@babel/runtime": "^7.16.7",
"@types/react": "^17.0.11",
"algeb": "^3.0.3",
"immer": "^9.0.18",
"react": "^17.0.2",
"rxjs": "^7.8.0",
"ts-fns": "^11.1.0",
"tyshemo": "^15.0.0"
},
"optionalDependencies": {
"@react-native-async-storage/async-storage": "^1.15.14",
"@react-navigation/native": "^6.0.10",
"@react-navigation/stack": "^6.2.1",
"react-dom": "^17.0.2",
"react-native": "^0.70.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-safe-area-context": "^3.4.1",
"react-native-screens": "^3.13.1"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.14.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"ansi-html": "^0.0.9",
"ansi-regex": "^6.0.1",
"babel-loader": "^8.1.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^4.3.0",
"eslint": "^8.15.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"glob-parent": "^6.0.2",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"prettier-eslint": "^14.0.2",
"react-reconciler": "^0.26.2",
"rimraf": "^3.0.2",
"scheduler": "^0.20.2",
"style-loader": "^1.2.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
}
}