-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
95 lines (95 loc) · 3.07 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
93
94
95
{
"name": "react-tabulator",
"version": "0.21.0",
"description": "React Tabulator is based on tabulator - a JS table library with many advanced features.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "npm run clean && tsc --outDir ./lib --jsx react --declaration ./src/index.ts && npm run postbuild",
"postbuild": "cp ./src/styles.css ./lib/ && cp -R ./src/css ./lib && cp ./src/styles.css ./ && cp -R ./src/css ./",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development nwb serve-react-demo --port 3003",
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development concurrently --kill-others \"npm run dev:watch\" \"npm run start\"",
"dev:watch": "tsc --outDir ./lib --jsx react --declaration --watch ./src/index.ts",
"test": "cross-env NODE_ENV=test HEADLESS=true jest --config=./jest-config.js --verbose",
"test:watch": "cross-env NODE_ENV=test HEADLESS=true jest --config=./jest-config.js --verbose --watchAll",
"start-test-ui": "nwb react run ./__tests__/ui/index.js --port 3003",
"test:coverage": "nwb test-react --coverage",
"demo": "nwb react run demo/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/ngduc/react-tabulator.git"
},
"keywords": [
"react",
"tabulator",
"table",
"component"
],
"author": "Duc Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngduc/react-tabulator/issues"
},
"homepage": "https://github.com/ngduc/react-tabulator#readme",
"dependencies": {
"@types/babel__traverse": "^7.17.1",
"@types/react-tag-autocomplete": "^5.6.0",
"dotenv": "^16.3.1",
"pick-react-known-prop": "^0.1.5",
"react-tag-autocomplete": "^5.7.1",
"tabulator-tables": "5.6.1"
},
"peerDependencies": {
"react": ">=15.6.2 || ^16.0.0 || ^17.0.0",
"react-dom": ">=15.6.2 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/tabulator-tables": "^6.2.3",
"babel-jest": "^29.6.4",
"concurrently": "^5.0.0",
"cross-env": "^7.0.3",
"enzyme-adapter-react-16": "^1.6.0",
"event-stream": "4.0.1",
"jest": "^29.6.4",
"jest-puppeteer": "^9.0.0",
"nwb": "^0.25.2",
"puppeteer": "^5.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-loader": "^9.5.1",
"typescript": "^4.2.1"
},
"prettier": {
"useTabs": false,
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none",
"jsxBracketSameLine": false,
"parser": "typescript"
},
"resolutions": {
"cryptiles": "^4.1.2",
"hoek": "^4.2.1",
"webpack-dev-server": "3.1.11",
"axios": "^0.18.1",
"minimist": "^0.2.1",
"set-value": "^2.0.1",
"js-yaml": "^3.13.1",
"mixin-deep": "^1.3.2",
"kind-of": "^6.0.3",
"serialize-javascript": "^2.1.1",
"tunnel-agent": "^0.6.0"
}
}