-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "add123-manifest",
"version": "2.2.0",
"description": "A paginated table implementation using React Hooks",
"main": "./dist/index.js",
"repository": "https://github.com/autodatadirect/add123-manifest",
"scripts": {
"build": "tsc && cp ./src/index.css ./dist/add123-manifest.css",
"prepublish": "npm run build",
"lint": "ts-standard",
"lint-fix": "ts-standard --fix",
"test": "jest ./src/* --watch",
"dev": "babel ./src -w -d ./dist"
},
"keywords": [
"use-manifest"
],
"author": "Auto Data Direct, Inc.",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.23.0",
"@babel/runtime": "^7.10.2",
"jest": "^24.9.0",
"ts-standard": "^12.0.2"
},
"peerDependencies": {
"amiable-forms": "^2.0.0",
"react": "^16.12.0 || ^17.0.2 || ^18.2.0",
"react-router-dom": "^6.4.1"
},
"eslintConfig": {
"extends": "react-app"
},
"ts-standard": {
"ignore": [
"node_modules",
"dist",
"build",
"example-project",
"src/**/*.test.ts",
"src/**/*.test.js"
]
},
"dependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"query-string": "^6.12.1",
"typescript": "^5.2.2",
"use-manifest": "^1.2.0"
}
}