-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.41 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
{
"name": "styled-json-to-table",
"version": "1.0.0",
"description": "Convert json to HTML <table>",
"private": false,
"main": "build/lib/components/index.js",
"types": "build/lib/components/index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"bootstrap": "^5.2.3",
"lodash": "^4.17.21",
"react-bootstrap": "^2.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geeky-abhishek/styled-json-to-table.git"
},
"author": "Abhishek Kumar <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/geeky-abhishek/styled-json-to-table/issues"
},
"homepage": "https://github.com/geeky-abhishek/styled-json-to-table#readme",
"scripts": {
"start-js": "react-scripts-ts start",
"start": "PORT=3006 npm-run-all -p watch-sass-to-css start-js",
"build-js": "react-scripts-ts build",
"build-app": "npm-run-all -p build-sass-to-css build-js",
"build": "tsc && npm run build-sass-to-css && npm run copy-css-to-lib",
"watch-lib": "tsc -w && npm run watch-sass-to-css && npm run watch-css-to-lib",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"copy-css-to-lib": "npm-run-all -s copy-base-css copy-component-css",
"watch-css-to-lib": "npm-run-all -s watch-base-css watch-component-css",
"copy-base-css": "cpx \"./src/**/*.css\" ./build/lib/",
"copy-component-css": "cpx \"./src/components/**/*.css\" ./build/lib/components",
"watch-base-css": "cpx \"./src/**/*.css\" ./build/lib/",
"watch-component-css": "cpx \"./src/components/**/*.css\" ./build/lib/components",
"build-sass-to-css": "node-sass-chokidar src/ -o src/",
"watch-sass-to-css": "node-sass-chokidar src/ -o src/ --watch"
},
"devDependencies": {
"@types/enzyme": "^3.1.13",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.1",
"@types/node": "^10.7.0",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"cpx": "^1.5.0",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"jest-cli": "^23.5.0",
"@types/lodash": "^4.14.191",
"node-sass-chokidar": "^1.5.0",
"npm-run-all": "^4.1.3",
"react-scripts-ts": "^4.0.8",
"typescript": "^3.1.0"
},
"files": [
"build/lib"
],
"keywords": [
"react",
"json",
"table",
"html"
]
}