-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "react-object-table-viewer",
"author": "jinkwon.lee <uzmystic@gmail.com>",
"license": "MIT",
"version": "1.0.7",
"description": "react object table ui",
"main": "out/cjs",
"module": "esm",
"types": "out/cjs/index.d.ts",
"homepage": "https://jinkwon.github.io/react-object-table-viewer",
"repository": {
"type": "git",
"url": "git+https://github.com/jinkwon/react-object-table-viewer.git"
},
"bugs": {
"url": "https://github.com/jinkwon/react-object-table-viewer/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"publish": "",
"build:pages": "rm -rf .next gh-phages && next build && next export -o gh-pages && touch gh-pages/.nojekyll",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:esm": "tsc -b tsconfig.esm.json",
"build": "rm -rf out && yarn run build:cjs && yarn run build:esm",
"deploy": "yarn run clean && yarn run build && yarn run build:pages && gh-pages -d gh-pages -t true",
"dev": "open http://localhost:3000/react-object-table-viewer && next",
"start": "",
"clean": "rimraf gh-pages && rimraf node_modules/.cache"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@next/eslint-plugin-next": "11.1.2",
"@types/react": "17.0.19",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.30.0",
"@typescript-eslint/parser": "4.30.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"gh-pages": "3.2.3",
"global": "4.4.0",
"http-server": "13.0.1",
"husky": "7.0.2",
"lint-staged": "11.1.2",
"next": "12.1.0",
"open": "8.2.1",
"prettier": "2.3.2",
"typescript": "4.4.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": true,
"singleQuote": true
}
}