-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.15 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
{
"name": "oio",
"version": "1.9.1",
"main": "dist/index.js",
"description": "A UI component kit for React",
"scripts": {
"build": "rm -rf dist && webpack --config config/webpack.config.js && gulp",
"demo": "npm run dev",
"dev": "node server.js",
"lint": "git diff HEAD --name-only --diff-filter=ACM | grep '.js$' | xargs node ./node_modules/eslint/bin/eslint.js --quiet",
"lint-full": "node ./node_modules/eslint/bin/eslint.js .",
"precommit": "npm run lint",
"postmerge": "npm install",
"postreceive": "npm install",
"postrewrite": "npm install",
"webpack-analyze": "mkdir -p dist; NODE_ENV=production webpack --config config/webpack.config.js --profile --json > dist/stats.json; webpack-bundle-analyzer dist/stats.json"
},
"files": [
"dist/index.js",
"dist/styles.css"
],
"repository": {
"type": "git",
"url": "https://github.com/mother/oio.git"
},
"keywords": [
"react",
"reactjs",
"component",
"components",
"kit",
"UI",
"material"
],
"author": "Mother Co.",
"license": "MIT",
"bugs": {
"url": "https://github.com/mother/oio/issues"
},
"homepage": "https://github.com/mother/oio",
"dependencies": {
"blob": "0.0.4",
"classnames": "2.2.5",
"form-data": "2.1.2",
"moment": "2.22.0",
"react-files": "2.4.5",
"react-router-dom": "4.2.2"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.43",
"@babel/preset-env": "7.0.0-beta.43",
"@babel/preset-react": "7.0.0-beta.43",
"@babel/preset-stage-0": "7.0.0-beta.43",
"babel-loader": "8.0.0-beta.2",
"css-loader": "0.28.11",
"eslint-config-mother": "latest",
"express": "4.16.2",
"gulp": "3.9.1",
"gulp-concat": "2.6.0",
"gulp-less": "4.0.0",
"husky": "0.13.2",
"jsdom": "9.4.2",
"less": "3.0.1",
"less-loader": "4.1.0",
"prop-types": "15.6.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"resolve-url-loader": "2.3.0",
"style-loader": "0.20.3",
"webpack": "4.4.1",
"webpack-bundle-analyzer": "2.11.1",
"webpack-cli": "2.0.13",
"webpack-dev-middleware": "3.1.0",
"webpack-hot-middleware": "2.21.2"
}
}