-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
{
"name": "@wearejh/rx-form",
"version": "1.0.1",
"description": "Form library for React + Preact",
"main": "dist/index.js",
"scripts": {
"lint": "prettier --tab-width 4 'src/**' 'stories/**' '.storybook/**'",
"lint:fix": "npm run lint -- --write",
"lint:check": "npm run lint -- --check",
"test": "tsc",
"build": "rm -rf dist/** && npm run lint:check && tsc",
"storybook": "start-storybook -p 6006 --docs",
"build-storybook": "build-storybook --docs",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"preact",
"form",
"rxjs"
],
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"author": "Shane Osbourne",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.7",
"@rollup/plugin-typescript": "^2.1.0",
"@storybook/addon-actions": "^5.3.0-rc.12",
"@storybook/addon-docs": "^5.3.0-rc.12",
"@storybook/addon-links": "^5.3.0-rc.12",
"@storybook/addons": "^5.3.0-rc.12",
"@storybook/preset-typescript": "^1.2.0",
"@storybook/react": "^5.3.0-rc.12",
"@types/debug": "^4.1.5",
"@types/dlv": "1.1.1",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"acorn-jsx": "^5.1.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"babel-plugin-typescript-to-proptypes": "1.1.0",
"debug": "^4.1.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-docgen-typescript-loader": "^3.6.0",
"react-dom": "^16.12.0",
"rollup": "^1.29.0",
"rxjs": "^6.5.4",
"ts-loader": "6.2.1",
"tslib": "^1.10.0",
"typedoc": "0.15.8",
"typescript": "^3.7.4"
},
"dependencies": {
"dlv": "1.1.3",
"dset": "2.0.1"
}
}