-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 986 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
{
"name": "cite",
"version": "1.0.0",
"description": "A plugin for adding citations from your Zotero library to Figma or FigJam layouts",
"main": "code.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode=development --watch",
"build": "webpack --mode=production"
},
"author": "James Cole",
"license": "MIT",
"devDependencies": {
"@figma/plugin-typings": "^1.72.0",
"@types/node": "^16.7.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"css-loader": "^6.2.0",
"html-inline-script-webpack-plugin": "^3.1.0",
"html-webpack-plugin": "^5.3.2",
"react-router-dom": "^6.15.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript-plugin-css-modules": "^5.0.1"
}
}