-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
46
47
48
{
"name": "react-codegen",
"version": "1.0.0",
"description": "Your Figma plugin",
"main": "code.js",
"scripts": {
"dev": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"prettier": "prettier --write",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"test": "jest"
},
"author": "",
"license": "",
"dependencies": {
"@vanilla-extract/css": "^1.0.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.6"
},
"devDependencies": {
"@babel/core": "7.13.15",
"@babel/preset-env": "7.13.15",
"@babel/preset-typescript": "7.13.0",
"@figma/plugin-typings": "1.33.0",
"@types/jest": "26.0.24",
"@types/react": "17.0.36",
"@types/react-dom": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"babel-jest": "27.0.6",
"css-loader": "5.2.5",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"figma-api-stub": "0.0.48",
"jest": "27.0.6",
"prettier": "2.2.1",
"style-loader": "2.0.0",
"ts-loader": "8.0.17",
"ts-node": "9.1.1",
"typescript": "4.2.2",
"url-loader": "4.1.1"
}
}