-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 3.24 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
{
"name": "figma-ui-color-palette",
"version": "4.2.3",
"description": "UI Color Palette・WCAG-Compliant Color Palette Suite",
"main": "code.js",
"scripts": {
"start": "npm-run-all -p start:announcements_worker start:auth_lobby start:dev",
"clone:announcements_worker": "git clone /~https://github.com/a-ng-d/announcements-yelbolt-worker.git && cd announcements-yelbolt-worker && npm install",
"clone:auth_worker": "git clone /~https://github.com/a-ng-d/auth-yelbolt-worker.git && cd auth-yelbolt-worker && npm install",
"clone:auth_lobby": "git clone /~https://github.com/a-ng-d/auth-yelbolt.git && cd auth-yelbolt && npm run install",
"start:announcements_worker": "cd ../announcements-yelbolt-worker && npm run start:8888",
"start:auth_lobby": "cd ../auth-yelbolt && npm run ui-color-palette",
"start:dev": "npx webpack --mode=development --watch",
"build": "npx webpack --mode=development",
"build:prod": "npx webpack --mode=production",
"typecheck": "npx tsc --noEmit",
"typecheck:watch": "npx tsc --noEmit --watch",
"lint": "npx eslint ./src/** --fix --ext .ts,.tsx .",
"lint:watch": "esw ./src/** --fix --watch --ext .ts,.tsx .",
"format": "npx prettier './src' --write",
"update:figmug": "npm i @a_ng_d/figmug-ui@latest @a_ng_d/figmug-utils@latest"
},
"keywords": [
"color",
"color-scheme",
"lch",
"color-system",
"ui-color",
"figma-plugin"
],
"author": "Aurélien Grimaud",
"licence": "MIT",
"repository": "/~https://github.com/a-ng-d/figma-ui-color-palette",
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "^0.15.0",
"@figma/plugin-typings": "^1.89.0",
"@types/chroma-js": "^2.4.0",
"@types/file-saver": "^2.0.5",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"css-loader": "^6.5.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.25.3",
"eslint-watch": "^8.0.0",
"html-webpack-inline-source-plugin": "^1.0.0-beta.2",
"html-webpack-plugin": "^5.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"preact": "^10.6.4",
"prettier": "^3.2.5",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-organize-imports": "^4.1.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^5.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@a_ng_d/figmug-ui": "^0.124.22",
"@a_ng_d/figmug-utils": "^0.1.7",
"@nanostores/preact": "^0.5.2",
"@sentry/react": "^8.8.0",
"@sentry/webpack-plugin": "^2.22.6",
"@supabase/supabase-js": "^2.44.2",
"apca-w3": "^0.1.9",
"chroma-js": "^2.4.2",
"color-blind": "^0.1.3",
"figma-plugin-ds": "^1.0.1",
"file-saver": "^2.0.5",
"hsluv": "^1.0.1",
"jszip": "^3.10.1",
"mixpanel-figma": "^2.0.4",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"uid": "^2.0.2"
}
}