-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.95 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.95 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
91
92
93
94
95
96
{
"name": "yuwan",
"version": "1.1.1",
"description": "components based on typescript & react",
"main": "./lib/index.js",
"author": "yuwan",
"keywords": [
"ant",
"components",
"react",
"react-component",
"ui",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/nankaNULL/react-typescript-components"
},
"files": [
"dist",
"lib"
],
"scripts": {
"build": "rimraf dist && cross-env NODE_ENV=production webpack --bail --progress --profile --config ./build/prod.js",
"compile": "rimraf lib && npx babel src/components --out-dir lib --extensions '.tsx' --copy-files && node-sass src/components --output lib",
"compile-css": "node-sass src/components --output lib",
"dev": "webpack-dev-server --progress --colors --config ./build/dev.js",
"test-watch": "karma start --auto-watch --no-single-run",
"start": "npm run dev",
"preview": "pushstate-server ./dist 1234",
"publish": "npm publish"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.7.2",
"@types/prop-types": "^15.7.3",
"@types/shallowequal": "^1.1.1",
"antd": "^3.25.2",
"lodash": "^4.17.15",
"mirror-creator": "^1.1.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-router-redux": "^4.0.8",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"shallowequal": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@types/classnames": "^2.2.9",
"@types/lodash": "^4.14.148",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.2",
"@types/react-router-redux": "^5.0.18",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"copy-webpack-plugin": "^5.0.5",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"pushstate-server": "^3.1.0",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"scss-loader": "^0.0.1",
"strip-loader": "^0.1.2",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"uglify-js": "^3.6.9",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"yuwan": "^1.1.0"
}
}