-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 3.53 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
{
"name": "@icgc-argo/uikit",
"version": "3.0.1",
"description": "ARGO UI component library",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/icgc-argo/uikit"
},
"scripts": {
"dev": "npm run watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"create-component": "plop --plopfile ./src/plopfile.js",
"type-check": "tsc -p ./tsconfig.json",
"test": "NODE_PATH=./ ts-mocha -p ./tsconfig.test.json ./testSetup.tsx src/testSetup.tsx src/**/*.test.tsx",
"test:watch": "NODE_PATH=./ ts-mocha --watch -p ./tsconfig.test.json ./testSetup.tsx src/testSetup.tsx src/**/*.test.tsx",
"build::assets": "cp ./package.json ./dist/package.json && cp -r ./src/assets ./dist/assets && cp ./README.md ./dist/README.md",
"build::ts": "tsc -p ./tsconfig.json",
"build::babel": "babel ./src --extensions .tsx,.ts,.js --out-dir ./dist",
"clean": "rm -rf dist && mkdir dist",
"declarations": "ttsc --emitDeclarationOnly",
"watch": "npm run clean && npm run build::assets && (npm run build::babel -- --watch --source-maps=inline & npm run declarations -- --watch)",
"build": "npm run clean && npm run build::assets && npm run declarations && npm run build::babel",
"publish-uikit": "cd dist && npm publish --access public"
},
"peerDependencies": {
"@emotion/react": "^11.11.0",
"react": "18.x.x",
"react-dom": "18.x.x"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.7.2",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@tanstack/react-table": "^8.7.6",
"clsx": "^1.0.4",
"color": "^3.1.2",
"date-fns": "^1.30.1",
"element-resize-detector": "^1.1.15",
"i": "^0.3.6",
"jsdom": "^14.0.0",
"lodash": "^4.17.14",
"prop-types": "^15.7.2",
"react-grid-system": "^4.4.6",
"react-tippy": "^1.4.0",
"react-transition-group": "^4.3.0",
"recompose": "^0.30.0",
"url-join": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.4.0",
"@emotion/babel-plugin": "^11.10.2",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack4": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack4": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.3.1",
"@types/lodash": "^4.14.138",
"@types/react": "^18.2.7",
"@types/react-dom": "^17",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"husky": "^2.2.0",
"plop": "^2.3.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^18.2.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^18.2.0",
"react-json-view": "^1.21.3",
"ts-node-dev": "^1.1.8",
"ttypescript": "^1.5.15",
"typescript": "4.8",
"webpack": "^5.75.0"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true
}
}