-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.06 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.06 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
{
"name": "figma-complex-themes",
"description": "Complex themes system for figma",
"main": "./src/code.tsx",
"version": "0.2",
"scripts": {
"style:fix": "prettier --config .prettierrc.js 'src/**/*.{ts,tsx}' --write",
"lint:fix": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"fix:all": "npm run style:fix && npm run lint:fix",
"webpack:watch": "webpack --watch",
"build": "webpack --mode=production",
"dev": "webpack"
},
"keywords": [
"figma",
"figma-plugins",
"themes",
"redraw",
"styles"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/friktor/figma-complex-themes"
},
"author": "Anton Shramko <antonshramko@yandex.ru>",
"license": "MIT",
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"chroma-js": "^2.1.0",
"classnames": "^2.2.6",
"react": "^17.0.1",
"react-alert": "^7.0.2",
"react-dom": "^17.0.1",
"react-dropzone": "^11.4.2",
"react-figma": "^0.5.2",
"react-redux": "^7.2.2",
"react-virtualized": "^9.22.3",
"reactjs-popup": "^2.0.4",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@figma/plugin-typings": "^1.16.1",
"@types/chroma-js": "^2.1.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@types/react-virtualized": "^9.21.14",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"css-loader": "^5.0.1",
"eslint": "^8.2.0",
"eslint-plugin-react": "^7.26.1",
"file-loader": "^6.2.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^4.5.1",
"prettier": "^2.4.1",
"prettier-eslint-cli": "^5.0.1",
"react-dev-utils": "^11.0.1",
"react-figma-webpack-config": "latest",
"sass": "^1.32.4",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1"
}
}