-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2 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
{
"name": "jimu-core",
"version": "0.0.1",
"description": "jimu core",
"main": "./lib/index.js",
"bin": {},
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --config build/webpack.dev.js --open",
"clean": "rimraf lib",
"test": "npm run lint",
"lint": "eslint src test",
"build": "tsc -p .",
"release": "standard-version",
"postversion": "git push --follow-tags"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "[email protected]:Dec-F/jimu-core.git"
},
"keywords": [
"npm",
"node",
"javascript"
],
"author": "Dec-F",
"license": "MIT",
"devDependencies": {
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.9.35",
"@types/react-dnd": "^3.0.2",
"@types/react-dom": "^16.9.8",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"autoprefixer": "^9.8.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"less-loader": "^6.1.0",
"mocha": "^6.1.3",
"postcss-loader": "^3.0.0",
"postcss-pxtorem": "^5.1.1",
"precss": "^4.0.0",
"prettier": "^2.0.5",
"standard-version": "^7.0.1",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.4",
"typescript": "^3.9.2",
"typescript-plugin-css-modules": "^2.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"antd": "^4.2.4",
"lodash-es": "^4.17.15",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"react": "^16.13.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.13.1",
"react-use": "^15.1.0",
"uuid": "^8.1.0"
}
}