-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.81 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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "align",
"version": "1.0.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "A 2d rendering engine and drawing tool. An experiment.",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"storybook:export": "build-storybook",
"predeploy-storybook": "npm run storybook:export",
"deploy-storybook": "gh-pages -d storybook-static",
"generate": "node ./util/create-component",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NGimbal/align"
},
"keywords": [
"React",
"Webgl2",
"2d",
"rendering",
"SDF"
],
"author": "Nicolas Schmidt",
"license": "MIT",
"bugs": {
"url": "https://github.com/NGimbal/align/issues"
},
"homepage": "https://ngimbal.github.io/align/?path=/story/drawing-panel--default",
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-controls": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.0-rc.1",
"@storybook/manager-webpack5": "^6.5.0-rc.1",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.9",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@types/jest": "^24.9.1",
"@types/react": "^16.14.14",
"@types/react-dom": "^16.9.14",
"@types/wicg-file-system-access": "^2020.9.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"colors": "^1.4.0",
"css-loader": "^5.2.6",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"sass": "^1.52.1",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"tslib": "^2.4.0",
"typescript": "^4.4.2",
"typescript-plugin-css-modules": "^3.4.0",
"webpack": "^5.73.0"
},
"dependencies": {
"@petamoriken/float16": "^3.6.3",
"@radix-ui/react-aspect-ratio": "^0.1.4",
"@radix-ui/react-avatar": "^0.1.4",
"@radix-ui/react-context-menu": "^0.1.6",
"@radix-ui/react-dropdown-menu": "^0.1.6",
"@radix-ui/react-label": "^0.1.5",
"@radix-ui/react-popover": "^0.1.6",
"@radix-ui/react-portal": "^0.1.4",
"@radix-ui/react-progress": "^0.1.4",
"@radix-ui/react-scroll-area": "^0.1.4",
"@radix-ui/react-separator": "^0.1.4",
"@radix-ui/react-slider": "^0.1.4",
"@radix-ui/react-switch": "^0.1.5",
"@radix-ui/react-tabs": "^0.1.5",
"@radix-ui/react-toolbar": "^0.1.5",
"@radix-ui/react-tooltip": "^0.1.7",
"bcryptjs": "^2.4.3",
"chroma-js": "^2.4.2",
"dxf-parser": "^1.1.2",
"image-extensions": "^1.1.0",
"is-hotkey": "^0.2.0",
"is-url": "^1.2.4",
"rbush": "^3.0.1",
"rbush-knn": "git+https://github.com/mourner/rbush-knn.git",
"react-bootstrap-icons": "^1.8.4",
"react-colorful": "^5.6.1",
"react-dropzone": "^14.2.2",
"redux": "^4.1.2",
"twgl.js": "^4.22.1"
}
}