-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "figma-faker",
"version": "1.0.0",
"description": "Generate massive amounts of realistic fake data in Figma",
"main": "code.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"lint": "eslint ./src"
},
"author": "Cory Etzkorn",
"license": "MIT",
"bugs": {
"url": "https://github.com/coryetzkorn/figma-faker/issues"
},
"homepage": "https://github.com/coryetzkorn/figma-faker#readme",
"dependencies": {
"faker": "^5.5.3",
"lodash": ">=4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "^0.15.0",
"@figma/plugin-typings": "^1.100.2",
"@types/node": "^22.7.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^5.6.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.0",
"typescript-eslint": "^8.11.0",
"url-loader": "^4.1.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}