forked from tokens-studio/figma-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.55 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
{
"name": "figma-tokens",
"version": "1.0.0",
"plugin_version": "67",
"description": "Figma Tokens",
"license": "ISC",
"scripts": {
"build-css": "postcss src/app/styles/tailwind.css -o src/app/styles/main.css",
"watch-css": "postcss src/app/styles/tailwind.css -o src/app/styles/main.css -w",
"watch-js": "webpack --mode=development --watch",
"watch-transform": "webpack --mode=development --watch --config webpack-transform.config.js",
"build-js": "webpack --mode=production",
"build": "yarn build-css && yarn build-js",
"build:watch": "concurrently 'yarn watch-css' 'yarn watch-js'",
"build-transform": "webpack --mode=production --config webpack-transform.config.js",
"prettier:format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,json}' ",
"test": "jest",
"svgr": "svgr -d src/icons/ assets/",
"cy:open": "cypress open",
"cy:run": "cypress run --headless",
"serve": "serve dist"
},
"dependencies": {
"@figma-plugin/helpers": "^0.15.2",
"@octokit/rest": "^18.9.0",
"@radix-ui/react-checkbox": "^0.0.16",
"@radix-ui/react-context-menu": "^0.0.23",
"@radix-ui/react-dropdown-menu": "^0.0.19",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-label": "^0.0.14",
"@radix-ui/react-tooltip": "^0.0.19",
"@reach/portal": "^0.10.5",
"@rematch/core": "^2.0.1",
"@sentry/react": "^6.2.5",
"@stitches/react": "^0.1.9",
"autoprefixer": "^10.2.5",
"axios": "^0.21.2",
"color2k": "^1.2.4",
"core-js": "^3.9.1",
"cypress-react-selector": "^2.3.6",
"dnd-core": "^12.0.1",
"dot-object": "^2.1.3",
"dotenv-webpack": "6.0.4",
"expr-eval": "^2.0.2",
"figma-plugin-ds": "^0.1.8",
"file-loader": "^6.2.0",
"ignore-styles": "^5.0.1",
"json5": "^2.2.0",
"lodash.isequal": "^4.5.0",
"mixpanel-figma": "^2.0.1",
"object-path": "^0.11.8",
"octokit-commit-multiple-files": "^3.2.1",
"postcss": "^8.2.10",
"react": "17.0.0",
"react-dnd": "^13.1.1",
"react-dnd-html5-backend": "^12.1.1",
"react-dom": "17.0.0",
"react-error-boundary": "^3.1.1",
"react-modal": "^3.11.2",
"react-redux": "^7.2.3",
"react-svg-loader": "^3.0.3",
"regenerator-runtime": "^0.13.7",
"set-value": "^3.0.2",
"storyblok-js-client": "^3.3.1",
"tailwindcss": "^2.0.3",
"use-debounce": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@figma/plugin-typings": "^1.15.0",
"@svgr/cli": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/lodash.isequal": "^4.5.5",
"@types/react": "^16.8.24",
"@types/react-dom": "^16.8.5",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"concurrently": "^5.2.0",
"css-loader": "^3.1.0",
"cypress": "^6.6.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-typescript-prettier": "^2.1.1",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.2",
"jest": "^26.6.3",
"lint-staged": "^9.2.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1",
"prettier": "^2.0.5",
"serve": "^11.3.2",
"style-loader": "^0.23.1",
"svg-url-loader": "^7.1.1",
"ts-loader": "^6.0.4",
"ts-node": "^9.1.1",
"tslint": "^5.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.7.4",
"url-loader": "^2.1.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": [
"prettier --write",
"git add"
]
}
}