-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.88 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.88 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
{
"name": "figma-plugin-pnu-spell-checker",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn watch",
"build": "yarn format && yarn lint:fix && yarn build:prod",
"build:dev": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"watch": "yarn build:dev --watch",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx}'",
"format": "prettier --write 'src/**/*.{js,jsx,css}'",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"repository": "https://github.com/kutta97/figma-plugin-pnu-spell-checker",
"author": "kutta97 <yhjin04170@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-react": "^7.18.6",
"@figma/plugin-typings": "^1.57.1",
"@svgr/webpack": "^6.5.1",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"babel-loader": "^9.1.2",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-styled-components": "^2.0.7",
"css-loader": "^6.7.3",
"dotenv": "^16.1.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"react-dev-utils": "^12.0.1",
"style-loader": "^3.3.1",
"styled-components": "^5.3.6",
"styled-reset": "^4.4.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5"
}
}