-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.86 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
{
"name": "piex-store",
"version": "0.0.0-alpha1",
"repository": "https://github.com/piex/piex-store.git",
"author": "foreverzmy <[email protected]>",
"license": "MIT",
"scripts": {
"dev:todo": "parcel example/todo/index.html",
"dev:cart": "parcel example/shopping-cart/index.html",
"dev:tree": "parcel example/tree-view/index.html",
"dev:vue": "parcel example/vue-simple/index.html",
"build": "node rollup.config.js",
"deploy": "gh-pages -d website/build/piex-store"
},
"npmClient": "yarn",
"useWorkspaces": true,
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.8.6",
"tslib": "^1.9.3",
"vue-hooks": "^0.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-async-generators": "^7.2.0",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-preset-jsx": "^1.0.0",
"dts-bundle-generator": "^3.0.0",
"eslint": "^5.16.0",
"eslint-plugin-eslint-plugin": "^2.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"gh-pages": "^2.0.1",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"parcel-bundler": "^1.12.3",
"rollup": "^1.13.1",
"rollup-plugin-dts": "^0.15.1",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-typescript": "^1.0.1",
"sass": "^1.20.1",
"typescript": "^3.4.5",
"vue": "^2.6.10",
"vue-tsx-support": "^2.3.0"
},
"alias": {
"@piex-store/core": "./packages/core/src",
"@piex-store/react": "./packages/react/src",
"@piex-store/vue": "./packages/vue/src",
"@piex-store/middleware-redux-devtools": "./packages/middleware-redux-devtools/src"
}
}