-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.12 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.12 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
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
96
97
98
99
{
"name": "deni-react-treeview",
"license": "MIT",
"version": "1.1.11",
"private": false,
"author": "Denimar de Moraes <denimar@gmail.com>",
"description": "A modern, themable and configurable treeview for React.",
"homepage": "https://github.com/denimar/deni-react-treeview",
"bugs": {
"url": "https://github.com/denimar/deni-react-treeview/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:denimar/deni-react-treeview.git"
},
"scripts": {
"build": "yarn clean; rollup -c; yarn postBuild",
"postBuild": "node ./scripts/postBuild",
"clean": "rimraf dist",
"dev": "yarn storybook",
"format": "prettier --write \"src/**/*.{ts,tsx,json,js,jsx}\"",
"format:check": "prettier --list-different \"src/**/*.{ts,tsx,json,js,jsx}\"",
"lint": "yarn lint:script && yarn lint:style",
"lint:script": "eslint --ext js --ext jsx --ext ts --ext tsx src",
"lint:style": "stylelint src",
"npm:publish": "./scripts/publishNPM.sh",
"storybook": "start-storybook -p 9001 -s ./src/assets -c .storybook",
"storybook:build": "build-storybook -c .storybook -o .storybook/dist -s src/assets",
"test": "jest --maxWorkers=2",
"test:watch": "yarn test --watch",
"test:coverage": "jest --coverage --colors --maxWorkers=2"
},
"main": "libs/lib.cjs.js",
"module": "libs/lib.esm.js",
"browser": "libs/lib.umd.js",
"types": "index.d.ts",
"dependencies": {
"@storybook/addon-notes": "^5.3.19",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0"
},
"peerDependencies": {
"classnames": "^2.2.6",
"react": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.18",
"@testing-library/react": "^10.0.2",
"@types/classnames": "^2.2.10",
"@types/jest": "^25.2.1",
"@types/node": "^10.12.18",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.3.0",
"node-sass": "^4.13.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.6.0",
"rollup-plugin-external-globals": "^0.5.0",
"rollup-plugin-postcss": "^2.5.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"stylelint": "^13.3.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.16.1",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
},
"keywords": [
"react",
"treeview",
"tree-view",
"tree",
"view",
"treenode",
"tree-node",
"deni-react-treeview"
]
}