-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "remix-wizard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"url": "https://github.com/dan-cooke/remix-wizard"
},
"scripts": {
"build": "tsc",
"postbuild": "cp package.json README.md dist",
"dev": "tsc -w",
"lint": "eslint src/**/*.ts",
"test": "echo \"todo\""
},
"author": "",
"license": "ISC",
"peerDependencies": {
"@remix-run/node": "^1.6.8",
"@remix-run/react": "^1.6.8",
"@remix-run/serve": "^1.6.8",
"react": "*",
"react-dom": "*",
"regenerator-runtime": "*",
"tslib": "^2.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@remix-run/dev": "^1.6.8",
"@remix-run/eslint-config": "^1.6.8",
"@remix-run/node": "^1.6.8",
"@remix-run/react": "^1.15.0",
"@remix-run/serve": "^1.6.8",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@testing-library/react": "13.4.0",
"@types/jest": "28.1.1",
"@types/node": "16.11.7",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-jest": "28.1.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "18.2.0",
"semantic-release": "^19.0.5",
"semver": "^7.3.8",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"tslib": "^2.0.0",
"typescript": "~4.8.2",
"zod": "^3.21.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}