forked from ngduc/react-tabulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.95 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
{
"name": "react-tabulator",
"version": "0.12.7",
"description": "React Tabulator is based on tabulator - a JS table library with many advanced features.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "es/index.js",
"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": "nwb serve-react-demo --port 3003",
"dev": "NODE_ENV=dev concurrently --kill-others \"npm run dev:watch\" \"npm run start\"",
"dev:watch": "tsc --outDir ./lib --jsx react --declaration --watch ./src/index.ts",
"test": "NODE_ENV=test HEADLESS=true jest --config=./jest-config.js --verbose",
"test:watch": "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/react-tag-autocomplete": "^5.6.0",
"dotenv": "^8.2.0",
"es6-promise": "^4.2.8",
"pick-react-known-prop": "^0.1.5",
"react-tag-autocomplete": "^5.7.1",
"tabulator-tables": "^4.6.2"
},
"peerDependencies": {
"react": ">=15.6.2 || ^16.0.0",
"react-dom": ">=15.6.2 || ^16.0.0"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.9",
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"concurrently": "^5.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"event-stream": "4.0.1",
"faker": "^4.1.0",
"jest": "^23.6.0",
"jest-puppeteer": "^4.3.0",
"nwb": "^0.23.0",
"puppeteer": "^1.9.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^4.0.0",
"typescript": "^3.8.3"
},
"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"
}
}