-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
34 lines (34 loc) · 928 Bytes
/
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
{
"dependencies": {
"axios": "^1.6.7",
"copy-webpack-plugin": "^12.0.2",
"figma-plugin-ds": "^1.0.1",
"lodash-es": "^4.17.21",
"node-fetch": "^3.3.2",
"prismjs": "^1.29.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"scripts": {
"start:api": "cd api && yarn && yarn start",
"start:ui": "webpack --watch",
"start": "run-p start:*",
"build": "webpack",
"lint": "eslint . --fix"
},
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "^0.14.0",
"@figma/plugin-typings": "^1.88.0",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"html-webpack-plugin": "^5.6.0",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.4"
}
}