forked from furious-luke/react-weaver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 KB
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": "react-weaver",
"version": "0.0.9",
"description": "React forms that are good at nesting.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Luke Hodkinson",
"license": "MIT",
"scripts": {
"storybook": "start-storybook",
"build": "tsc",
"test": "jest src",
"test:cov": "jest src --coverage",
"examples": "webpack-dev-server --hmr"
},
"files": [
"dist/**/*",
"src/**/*"
],
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@hot-loader/react-dom": "^17.0.0",
"@storybook/addon-essentials": "^6.0.19",
"@storybook/react": "^6.0.19",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/user-event": "^12.1.7",
"@types/styletron-engine-atomic": "^1.1.0",
"@types/styletron-react": "^5.0.2",
"@types/styletron-standard": "^2.0.1",
"babel-jest": "^26.6.3",
"baseui": "^9.103.0",
"clean-webpack-plugin": "^3.0.0",
"jest": "^26.5.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.13.0",
"react-test-renderer": "^16.13.1",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7",
"terser-webpack-plugin": "^4.2.2",
"ts-loader": "^8.0.7",
"typescript": "^4.0.3",
"uuid": "^8.3.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"yup": "^0.29.3"
}
}