-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.36 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": "invert-color",
"version": "10.0.0",
"description": "Simply invert fills, strokes & effects colors in Figma",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "code.js",
"scripts": {
"release": "npm run prettier && npm run lint && npm run build",
"//clean TODO": "rimraf dist/*",
"prebuild": "rimraf dist/*",
"build": "webpack --mode production",
"watch": "webpack --watch",
"lint": "eslint 'src/**/*.{tsx,ts}' --fix",
"prettier": "prettier --write 'src/**/*.{html,scss,css,tsx,ts}'",
"commit": "git-cz",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/pluginsky/invert-color.git"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-figma-ui": "^1.1.0",
"zustand": "^3.5.1"
},
"devDependencies": {
"@figma/plugin-typings": "^1.23.0",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"css-loader": "^5.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"node-sass": "^6.0.0",
"prettier": "^2.3.0",
"react-dev-utils": "^11.0.4",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.1.2",
"typescript": "^4.2.4",
"typescript-plugin-css-modules": "^3.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{html,scss,css,tsx,ts}": [
"npm run prettier"
],
"src/**/*.{tsx,ts}": [
"npm run lint"
]
}
}