-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "toybox",
"productName": "Toybox",
"version": "1.0.0",
"author": "Coulter Peterson",
"keywords": [
"local-addon"
],
"bgColor": "#51bb7b",
"icon": "icon.svg",
"description": "Easily collaborate on your website designs with this Local Toybox integration!",
"renderer": "lib/renderer.js",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/coulterpeterson/local-addon-toybox"
},
"bugs": {
"url": "https://github.com/coulterpeterson/local-addon-toybox/issues"
},
"license": "MIT",
"scripts": {
"build": "npm run build:css && tsc",
"watch": "npm run watch:css && yarn run build --watch",
"build:css": "postcss tailwind.css -o main.css",
"watch:css": "postcss tailwind.css -o main.css"
},
"devDependencies": {
"@getflywheel/eslint-config-local": "1.0.4",
"@getflywheel/local": "^5.1.0-alpha.7",
"@types/classnames": "^2.2.9",
"@types/dateformat": "^3.0.1",
"@types/node": "^12.7.12",
"autoprefixer": "^9.7.4",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"minimist": "^1.2.5",
"postcss-cli": "^7.1.0",
"tailwindcss": "^1.2.0",
"typescript": "^3.6.4"
},
"peerDependencies": {
"react": ">= 16.4.0",
"react-dom": ">= 16.4.0",
"react-router-dom": "^4.3.1"
},
"dependencies": {
"@getflywheel/local-components": "^12.1.0",
"classnames": "^2.2.6",
"dateformat": "^3.0.3",
"prop-types": "^15.6.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-router-dom": "^5.1.2"
},
"bundledDependencies": [
"classnames",
"dateformat",
"@getflywheel/local-components",
"prop-types"
],
"engines": {
"local-by-flywheel": "^5.0.0"
},
"resolutions": {
"minimist": "^1.2.5"
}
}