-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
143 lines (143 loc) · 4.42 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"private": true,
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --hoist --no-ci",
"start": "npm run watch | npm run watch:css | webpack-dev-server --open --config ./site/config/webpack.config.dev ",
"test": "jest --verbose=true --no-cache --updateSnapshot",
"watch:css": "gulp watch-css --cwd ./packages/theme-default",
"build": "cross-env NODE_ENV=production rollup -c",
"build:doc": "npm run clearn:doc && cross-env NODE_ENV=production webpack --config ./site/config/webpack.config.prod.js",
"doc": "http-server ./_site -p 3333",
"clearn:doc": "rimraf _site",
"watch": "rollup -cw",
"release": "lerna publish",
"create:lib": "lerna create ./packages ",
"lint": "eslint packages/**/src/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/src/*.js": [
"prettier --write",
"eslint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/didi/pile.js.git"
},
"homepage": "https://didi.github.io/pile.js/docs",
"author": "Pile Team",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-export-namespace-from": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"@babel/standalone": "^7.2.2",
"autoprefixer": "^9.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-prismjs": "^1.0.2",
"babel-preset-es2015": "^6.24.0",
"chai": "^4.2.0",
"chai-jest-snapshot": "^2.0.0",
"codemirror": "^5.42.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"cssnano": "^4.1.7",
"core-js": "^2.6.5",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"enzyme-to-json": "^3.0.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.1",
"express": "^4.16.4",
"file-loader": "^2.0.0",
"glob": "^7.1.1",
"gulp": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"husky": "^1.3.1",
"jest": "^23.0.0",
"jest-spec-reporter": "^1.0.3",
"json-loader": "^0.5.7",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"marked": "^0.5.2",
"mini-css-extract-plugin": "^0.4.4",
"minimist": "^1.2.0",
"mockdate": "^2.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.4",
"prismjs": "^1.15.0",
"prop-types": "^15.7.2",
"raw-loader": "^1.0.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-loadable": "^5.5.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"recompose": "^0.30.0",
"rimraf": "^2.6.3",
"rollup": "^1.5.0",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.0.1",
"sinon": "^7.2.7",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-dev-server": "^3.1.9",
"webpack-hot-middleware": "^2.24.3",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.1.4",
"workbox-webpack-plugin": "^3.6.2"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"dependencies": {},
"description": "A lightweight mobile components library build with [React](http://facebook.github.io/react/).",
"bugs": {
"url": "https://github.com/didi/pile.js/issues"
},
"version": "2.0.0",
"main": ".eslintrc.js",
"directories": {
"test": "tests"
},
"keywords": [
"pile",
"components"
],
"license": "MIT"
}