-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.34 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
{
"name": "@datalayer/icons-all",
"version": "0.0.0",
"private": true,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"style"
],
"repository": {
"type": "git",
"url": "https://github.com/datalayer/icons.git"
},
"homepage": "https://datalayer.design",
"scripts": {
"build": "yarn run build-icons && yarn build-app",
"build-app": "tsc && vite build",
"build-icons": "yarn run build-optimized && yarn run build-react",
"build-optimized": "yarn run build-data1 && yarn run build-data2 && yarn build-eggs",
"build-data1": "rimraf ./optimized/data && svgo --config=svgo.yaml -f ./svg/data1 -o ./optimized/data1 --pretty --indent=2",
"build-data2": "rimraf ./optimized/data && svgo --config=svgo.yaml -f ./svg/data2 -o ./optimized/data2 --pretty --indent=2",
"build-eggs": "rimraf ./optimized/eggs && svgo --config=svgo.yaml -f ./svg/eggs -o ./optimized/eggs --pretty --indent=2",
"build-react": "node ./scripts/build.js icons-react",
"build-vue": "node ./scripts/build.js vue",
"clean": "rimraf lib build dist tsconfig.tsbuildinfo optimized/data1 optimized/data2 optimized/eggs react/data1 react/data2 react/eggs",
"dev": "vite",
"landing:app": "tsc --watch",
"preview": "vite preview",
"start": "vite"
},
"dependencies": {
"@jupyterlab/ui-components": "^4.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "5.3.10"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@primer/brand-primitives": "^0.29.1",
"@primer/octicons-react": "^19.6.0",
"@primer/react": "^36.25.0",
"@primer/react-brand": "0.37.0-rc.ab1bfc11",
"@svgr/core": "^5.5.0",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "4.3.3",
"@vue/compiler-dom": "^3.0.5",
"autoprefixer": "^10.4.14",
"camelcase": "^6.0.0",
"cheerio": "^1.0.0-rc.12",
"html-to-image": "1.9.0",
"postcss": "^8.4.23",
"prettier": "^2.8.7",
"rimraf": "^3.0.2",
"svgo": "^1.3.2",
"typescript": "5.0.3",
"vite": "5.4.11",
"vite-plugin-svgr": "4.3.0"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5"
}
}