-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.62 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
{
"name": "@radix-ui/auth",
"description": "",
"version": "0.0.0",
"sideEffects": false,
"files": [
"dist",
"sign-up",
"sign-in",
"request-password",
"reset-password",
"verify-email",
"src"
],
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc --project tsconfig-esm.json",
"build:cjs": "tsc --project tsconfig-cjs.json",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006 --no-open",
"build-storybook": "build-storybook"
},
"dependencies": {
"@radix-ui/react-form": "0.0.2",
"tslib": "2.5.0"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@storybook/builder-webpack4": "^6.5.16",
"@storybook/manager-webpack4": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"babel-loader": "^8.3.0",
"eslint": "^8.35.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-storybook": "^0.6.11",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "4.9.5"
},
"license": "MIT",
"homepage": "https://github.com/radix-ui/auth#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/radix-ui/auth.git"
},
"bugs": {
"url": "https://github.com/radix-ui/auth/issues"
}
}