-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
{
"name": "zscroller",
"version": "0.7.1",
"description": "dom scroller based on zynga scroller",
"keywords": [
"zynga scroller",
"dom scroller"
],
"homepage": "https://github.com/yiminghe/zscroller",
"repository": {
"type": "git",
"url": "https://github.com/yiminghe/zscroller.git"
},
"bugs": {
"url": "https://github.com/yiminghe/zscroller/issues"
},
"license": "MIT",
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"pika-plugin-build-web-babel"
],
[
"@pika/plugin-copy-assets"
],
[
"pika-plugin-clean-dist-src"
]
]
},
"scripts": {
"prettier": "prettier --write \"{src,stories}/**/*.{js,tsx}\"",
"start": "start-storybook -p 6006",
"pub": "npm run build && npm publish pkg && git push",
"build": "pika-pack build",
"deploy": "storybook-to-ghpages",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@pika/pack": "^0.5.0",
"@pika/plugin-copy-assets": "^0.6.1",
"@pika/plugin-ts-standard-pkg": "^0.6.1",
"@pika/types": "^0.6.1",
"@storybook/react": "^5.1.9",
"@storybook/storybook-deployer": "^2.8.1",
"babel-loader": "^8.0.6",
"lint-staged": "^9.2.1",
"pika-plugin-build-web-babel": "^0.10.0",
"pika-plugin-clean-dist-src": "^0.1.1",
"pre-commit": "1.x",
"prettier": "^1.18.2",
"react": "16.x",
"react-dom": "16.x",
"react-numeric-input": "^2.2.3",
"typescript": "^3.7.5"
},
"lint-staged": {
"*.{tsx,js,jsx,ts}": [
"prettier --write",
"git add"
]
},
"pre-commit": [
"lint-staged"
]
}