-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.79 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "react-wizard-flow",
"version": "1.0.2",
"packageManager": "[email protected]",
"description": "react-wizard-flow",
"scripts": {
"lint": "eslint src --ext .ts,.tsx",
"format": "npm run lint --fix",
"test:type": "tsc",
"test": "NODE_ENV=test jest",
"test:ci": "npm test -- --ci",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"build:lib": "NODE_ENV=production babel src --out-dir lib --source-maps inline --extensions '.ts,.tsx,.js' --ignore '**/__tests__/**' --ignore '**/*.d.ts'",
"build:types": "tsc --build",
"build:clean": "rimraf lib dist *.tsbuildinfo",
"build": "npm run build:lib && npm run build:types",
"dev": "npm run build:lib -w",
"prepack": "npm run build",
"build:bundle": "rollup -c",
"prepublishOnly": "npm run build:bundle"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/react-noui/react-wizard-flow.git"
},
"bugs": {
"url": "https://github.com/react-noui/react-wizard-flow/issues"
},
"homepage": "https://github.com/react-noui/react-wizard-flow#readme",
"keywords": [
"anansi"
],
"sideEffects": false,
"main": "dist/index.cjs.js",
"module": "lib/index.js",
"unpkg": "dist/index.umd.min.js",
"types": "lib/index.d.ts",
"files": [
"src",
"dist",
"lib",
"LICENSE",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@anansi/babel-preset": "3.4.1",
"@anansi/browserslist-config": "1.4.1",
"@anansi/eslint-plugin": "0.15.3",
"@anansi/jest-preset": "0.8.2",
"@babel/cli": "7.21.0",
"@babel/core": "7.21.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "29.4.0",
"@types/jest-axe": "^3.5.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@zerollup/ts-transform-paths": "1.7.18",
"eslint": "^7.0.0 || ^8.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "29.4.3",
"jest-axe": "^7.0.0",
"jest-environment-jsdom": "29.4.3",
"prettier": "^2.2.1",
"react-test-renderer": "18.2.0",
"rimraf": "4.1.2",
"rollup": "3.17.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.9.5"
},
"dependencies": {
"@babel/runtime": "7.21.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
}