-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.55 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.1.1",
"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 --hot"
},
"files": [
"dist/**/*",
"src/**/*"
],
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@hot-loader/react-dom": "^17.0.2",
"@storybook/addon-essentials": "^7.4.2",
"@storybook/react": "^7.4.2",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
"babel-jest": "^29.7.0",
"baseui": "^13.0.0",
"clean-webpack-plugin": "^4.0.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-loader": "^4.13.0",
"react-test-renderer": "^18.2.0",
"styletron-engine-atomic": "^1.5.0",
"styletron-react": "^6.1.0",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"uuid": "^9.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"yup": "^1.2.0"
},
"dependencies": {
"html-webpack-plugin": "^5.5.3"
}
}