-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.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
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": "vis-ui",
"version": "0.1.4",
"description": "A library of UI components for React",
"main": "lib/index.js",
"scripts": {
"babel": "babel src -d lib",
"build:lib": "rm -rf lib && npm run babel && npm run build:sass",
"build:sass": "gulp rename",
"build:base64": "gulp base64",
"build:dist": "gulp dist",
"build": "npm run examples:build",
"prepublish": "npm run build:lib",
"examples:build": "webpack --config ./pages/examples/webpack.config.js --mode production",
"examples": "webpack-dev-server --config ./pages/examples/webpack.config.js --mode development",
"test": "jest",
"start": "npm run examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huiyan-fe/vis-ui.git"
},
"author": "junior2ran",
"license": "MIT",
"bugs": {
"url": "https://github.com/huiyan-fe/vis-ui/issues"
},
"homepage": "https://github.com/huiyan-fe/vis-ui#readme",
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"gulp": "^3.9.1",
"gulp-base64": "^0.1.3",
"gulp-rename": "^1.4.0",
"gulp-rimraf": "^0.2.2",
"gulp-sass": "^4.0.1",
"jest": "^23.6.0",
"node-sass": "^4.12.0",
"react-copy-to-clipboard": "^5.0.1",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.1",
"shallowequal": "^1.1.0",
"sinon": "^6.3.2",
"style-loader": "^0.21.0",
"stylelint": "^9.2.1",
"stylelint-config-standard": "^18.2.0",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}