forked from JustOxxy/leda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.75 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "kksng-ui",
"version": "0.23.0",
"description": "UI components library for React applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/kksng/leda"
},
"scripts": {
"start": "npm run start:demo",
"start:demo": "npm run clean:assets && npm run sass:build && npm run wds:hot",
"start:docs": "npm run clean:assets && npm run sass:build && npm run wds:hot:docs",
"check": "npm run lint && npm run test && npm run tsc",
"build": "npm run clean && npm run tsc && npm run sass",
"lint": "eslint --color --ext .ts,.tsx leda",
"test": "jest --color --silent",
"tsc": "tsc",
"jest": "jest",
"cypress": "start-test wds 9000 cypress:open",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"sass": "node-sass --output dist/styles styles",
"sass:build": "node-sass --output public/assets/css styles",
"sass:watch": "node-sass --output public/assets/css styles --watch",
"wds": "webpack-dev-server",
"wds:hot": "webpack-dev-server --hot",
"wds:hot:docs": "webpack-dev-server --hot --config webpack.docs.js",
"webpack:analyze": "webpack --mode production --config webpack.analyze.js",
"clean": "rimraf dist/*",
"clean:assets": "rimraf public/assets && mkdirp public/assets",
"prepublishOnly": "npm run build"
},
"dependencies": {
"attr-accept": "2.1.0",
"classnames": "2.2.6",
"element-closest": "3.0.2",
"element-scroll-polyfill": "1.0.1",
"lodash": "4.17.15",
"react-dropzone": "10.2.2",
"react-slider": "1.0.1",
"svgxuse": "1.2.6"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "4.1.3",
"@hot-loader/react-dom": "16.11.0",
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "9.4.0",
"@testing-library/user-event": "8.1.3",
"@types/classnames": "2.2.10",
"@types/enzyme": "3.10.5",
"@types/enzyme-adapter-react-16": "1.0.5",
"@types/jest": "25.1.4",
"@types/lodash": "4.14.149",
"@types/react": "16.9.27",
"@types/react-css-collapse": "3.6.0",
"@types/react-dom": "16.9.5",
"@types/react-router-dom": "5.1.3",
"@types/react-slider": "1.0.0",
"@types/shortid": "0.0.29",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"circular-dependency-plugin": "5.2.0",
"core-js": "3.6.2",
"cypress": "3.8.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.4.3",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-typescript": "7.2.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-cypress": "2.10.3",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"history": "4.10.1",
"html-webpack-plugin": "3.2.0",
"html-webpack-tags-plugin": "2.0.17",
"intl": "1.2.5",
"jest": "25.1.0",
"jest-date-mock": "1.0.8",
"mkdirp": "1.0.3",
"ncp": "2.0.0",
"node-sass": "4.13.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hot-loader": "4.12.19",
"react-router-dom": "5.1.2",
"rimraf": "3.0.2",
"script-ext-html-webpack-plugin": "2.1.4",
"shortid": "2.2.15",
"start-server-and-test": "1.10.11",
"ts-jest": "25.2.1",
"ts-loader": "6.2.1",
"typescript": "3.8.3",
"webpack": "4.41.5",
"webpack-bundle-analyzer": "3.6.1",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1",
"webpack-merge": "4.2.2"
},
"peerDependencies": {
"react": ">= 16.8.0 < 17.0.0",
"react-dom": ">= 16.8.0 < 17.0.0"
}
}