-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 4.06 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "bsl",
"version": "0.2.1",
"description": "基于React的框架和UI组件",
"main": "index.js",
"scripts": {
"test": "tsc --project tsconfig.test.json&&jest",
"test:tscW": "tsc --project tsconfig.test.json -w",
"test:jestW": "jest --watch",
"vender": "set NODE_ENV=development&&webpack --env development --mode development --progress --color --display-error-details --config ./task/dll.ts",
"publish": "tsc --project tsconfig.task.json && npm run vender && npm publish",
"docs:dev": "tsc --project tsconfig.task.json && set NODE_ENV=development&&webpack --env development --mode development --watch --progress --color --display-error-details",
"docs:pro": "tsc --project tsconfig.task.json && set NODE_ENV=production&&webpack --env production --mode production --progress --color --display-error-details",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/summersky2014/bsl.git"
},
"keywords": [
"React",
"framework",
"component"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/summersky2014/bsl/issues"
},
"homepage": "https://github.com/summersky2014/bsl#readme",
"jest": {
"preset": "jest-puppeteer",
"testMatch": [
"**/__tests__/tests/**/*.spec.js"
]
},
"browserslist": [
"Firefox > 20",
"ie > 9",
"chrome > 39",
"iOS >= 7",
"Android >= 4"
],
"dependencies": {
"@better-scroll/core": "^2.0.2",
"@better-scroll/slide": "^2.0.2",
"@better-scroll/wheel": "^2.0.2",
"@teamsupercell/typings-for-css-modules-loader": "^2.4.0",
"@types/asap": "^2.0.0",
"@types/classnames": "^2.2.7",
"@types/inline-style-prefixer": "^5.0.0",
"@types/node": "^14.6.3",
"@types/react": "^16.0.0",
"@types/react-dom": "^16.0.0",
"@types/react-router": "^5.0.0",
"@types/react-router-dom": "^5.0.0",
"@types/string-hash": "^1.1.1",
"@types/webpack": "^4.4.24",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"@ungap/url-search-params": "^0.1.2",
"aphrodite": "^2.4.0",
"autoprefixer": "^9.0.0",
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^2.4.0",
"create-subscription": "^17.0.0",
"css-loader": "^1.0.0",
"eslint": "^7.8.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-jsx-control-statements": "^2.2.1",
"eslint-plugin-react": "^7.15.0",
"eslint-plugin-react-hooks": "^4.1.0",
"exif-js": "^2.3.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"immer": "^7.0.8",
"inline-style-prefixer": "^6.0.0",
"intersection-observer": "^0.7.0",
"markdown-loader": "^5.1.0",
"mutationobserver-shim": "^0.3.7",
"node-sass": "^4.0.0",
"postcss-loader": "^2.0.0",
"raw-loader": "^3.1.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"sass-loader": "^6.0.0",
"sass-resources-loader": "^2.0.0",
"source-map-loader": "^0.2.4",
"string-hash": "^1.1.3",
"svg-sprite-loader": "^5.0.0",
"terser-webpack-plugin": "^4.1.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"typings-for-css-modules-loader": "1.7.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.2.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@types/jest": "^25.1.2",
"@types/jsdom": "^16.1.0",
"@types/puppeteer": "^2.0.0",
"@types/qrcode.react": "^0.9.0",
"@types/react-syntax-highlighter": "^11.0.1",
"@types/react-test-renderer": "^16.9.0",
"@types/showdown": "^1.9.3",
"antd": "^4.0.1",
"copy-webpack-plugin": "^6.0.0",
"http-server": "^0.11.1",
"jest": "^25.1.0",
"jest-puppeteer": "^4.4.0",
"jsdom": "^16.2.0",
"qrcode.react": "^0.9.3",
"react-syntax-highlighter": "^11.0.2",
"react-test-renderer": "^16.12.0",
"showdown": "^1.9.0",
"puppeteer": "^5.0.0"
}
}