-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·100 lines (100 loc) · 3.12 KB
/
package.json
File metadata and controls
executable file
·100 lines (100 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
100
{
"name": "vmo-lib",
"version": "2.3.0",
"main": "lib/index.ts",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^29.5.2",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"@types/gh-pages": "^5.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-typescript": "^0.14.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.3.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"sh-exec": "^2.1.0",
"tsc-files": "^1.1.3",
"typescript": "5.0.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"ts-node": "^10.9.1"
},
"dependencies": {
"@17media/dad": "github:17media/dad#latest",
"@babel/runtime": "^7.15.4",
"@sentry/react": "^7.21.1",
"@sentry/tracing": "^7.21.1",
"@testing-library/react": "^14.0.0",
"@types/axios": "^0.14.0",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@types/styled-components": "^5.1.9",
"@types/uuid": "^9.0.1",
"axios": "^1.4.0",
"file-loader": "^6.2.0",
"idb-keyval": "^6.2.1",
"intersection-observer": "^0.12.2",
"jest-mock-random": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-window": "^1.8.6",
"remove": "^0.1.5",
"styled-components": "^6.0.0-rc.3",
"ts-loader": "^9.1.2",
"typedoc": "^0.24.8",
"uuid": "^9.0.0"
},
"scripts": {
"build:lib": "rm -rf dist && tsc",
"deploy:lib": "ts-node scripts/deploy-lib.ts",
"start": "webpack server --hot",
"watch": "tsc --watch",
"test": "jest",
"format": "prettier --write .",
"doc": "rm -rf docs && typedoc",
"build:playground": "rm -rf output && webpack",
"build:both": "yarn doc && yarn build:playground",
"copy:both": "rm -rf deploy/docs && rm -rf deploy/output && cp -r docs deploy/docs && cp -r output deploy/output",
"rm:both": "rm -rf docs && rm -rf output && rm -rf deploy/docs && rm -rf deploy/output",
"deploy:both": "yarn build:both && yarn copy:both && gh-pages -d deploy && yarn rm:both"
},
"lint-staged": {
"**/*.ts?(x)": [
"eslint",
"prettier --write",
"tsc-files --noEmit"
]
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"axios": ">=1.3.0",
"styled-components": ">=5.3.9"
}
}