-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.19 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.19 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "uikernel",
"version": "1.0.1-dev14.0",
"license": "BSD",
"description": "UI library",
"keywords": [
"ui",
"uikernel",
"grid",
"forms",
"react"
],
"main": "./lib/node",
"browser": "./lib/browser",
"repository": "git@github.com:softindex/uikernel.git",
"scripts": {
"build": "yarn validate && yarn build:ts && gulp",
"build:ts": "tsc",
"test": "jest",
"site:start": "rm -rf _site && yarn build -- buildSite && sh ./scripts/site_start.sh",
"site:start+examples": "rm -rf _site && yarn build -- buildSite && npx zx ./scripts/build_examples.mjs && sh ./scripts/site_start.sh",
"ts": "tsc --preserveWatchOutput --noEmit",
"lint": "esw src --color --ext=.jsx,.js,.tsx,.ts --cache",
"validate": "yarn lint --fix && yarn ts && yarn test"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"classnames": "^2.2.6",
"csv-stringify": "^5.6.5",
"date-fns": "^2.19.0",
"express": "^4.16.4",
"http-errors": "^1.7.3",
"lodash": "^4.17.21",
"multer": "^1.4.1",
"react-datepicker": "^3.6.0",
"ts-essentials": "^9.1.2",
"xhr": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/express": "^4.17.15",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/multer": "^1.4.7",
"@types/react": "^18.0.34",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"browserify": "^15.2.0",
"browserify-shim": "^3.8.12",
"del": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-alloy": "~4.5.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-typescript-custom-sort-keys": "^1.0.5",
"eslint-plugin-xss": "^0.1.11",
"eslint-watch": "^7.0.0",
"gulp": "^4.0.0",
"gulp-archiver": "^1.0.0",
"gulp-eslint": "^4.0.0",
"gulp-eslint7": "^0.3.2",
"gulp-gh-pages": "^0.5.4",
"gulp-if": "^2.0.2",
"gulp-less": "^3.5.0",
"gulp-rename": "^1.4.0",
"gulp-sequence": "^1.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"merge-stream": "^1.0.0",
"prettier": "^2.7.1",
"raf": "^3.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4",
"yargs": "^11.1.0",
"zx": "^7.2.1"
},
"peerDependencies": {
"react": ">=16.12.0",
"react-dom": ">=16.12.0"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "/__tests__/",
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.(j|t)sx?"
],
"testURL": "http://localhost",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"packageManager": "yarn@3.5.0",
"engines": {
"node": ">=12"
}
}