-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 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
{
"name": "bulk-property-randomizer",
"version": "1.0.1",
"description": "A Figma plugin to randomize one or more properties of your selected elements",
"main": "dist/code.js",
"scripts": {
"build": "npx webpack --mode=production && git add --all && git commit -a && git push",
"dev": "npx webpack --mode=development --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Aaron M. Wright",
"license": "ISC",
"dependencies": {
"@figma-plugin/helpers": "^0.1.0",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"css-loader": "^3.1.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"javascript-natural-sort": "^0.7.1",
"lodash": "^4.17.15",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"url-loader": "^2.1.0",
"webpack": "^4.38.0"
},
"devDependencies": {
"prettier": "^2.0.2",
"styled-components": "^5.0.1",
"webpack-cli": "^4.8.0"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "all",
"tabWidth": 4,
"semi": true,
"singleQuote": true
}
}