-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.36 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.36 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
{
"name": "@codely/figma-plugin-structurer",
"version": "1.0.0",
"description": "Figma Plugin for speeding up and ensure consistency in the structure of your Figma projects",
"private": true,
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodelyTV/figma-plugin-structurer.git"
},
"author": "codelytv",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodelyTV/figma-plugin-structurer/issues"
},
"homepage": "https://github.com/CodelyTV/figma-plugin-structurer#readme",
"devDependencies": {
"@figma/plugin-typings": "^1.50.0",
"@swc/core": "^1.2.218",
"@swc/jest": "^0.2.22",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.1.3",
"jest-mock-extended": "^2.0.7",
"prettier": "^2.7.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}