-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.03 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
{
"private": true,
"name": "figma-plugin-starter",
"version": "1.0.0",
"description": "An opinionated Figma plugin starter.",
"author": "Denis Rojcyk <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rojcyk/figma-plugin-starter.git"
},
"scripts": {
"dev": "NODE_ENV=development NODE_ENV=development node ./node_modules/webpack-cli/bin/cli.js --mode=development --watch",
"build": "node ./node_modules/webpack-cli/bin/cli.js --mode=production"
},
"devDependencies": {
"@figma/plugin-typings": "1.37.0",
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.15",
"dotenv": "^10.0.0",
"figmaio": "^0.2.10",
"html-webpack-plugin": "^5.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
}
}