-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "project-base-localwp-addon",
"productName": "Project Base LocalWP Addon",
"version": "1.0.0",
"author": "Jørgen Stenshaugen",
"keywords": [
"local-addon"
],
"bgColor": "#51bb7b",
"icon": "icon.svg",
"slug": "project-base-localwp-addon",
"description": "Helper features for project base setup",
"renderer": "lib/renderer.js",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/dekodeinteraktiv/project-base-localwp-addon.git"
},
"license": "MIT",
"scripts": {
"start": "tsc --watch",
"build": "tsc"
},
"devDependencies": {
"@getflywheel/eslint-config-local": "1.0.4",
"@getflywheel/local": "^5.0.0",
"@types/classnames": "^2.2.9",
"@types/dateformat": "^3.0.1",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.25",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"typescript": "^3.6.4"
},
"peerDependencies": {
"react": ">= 16.4.0",
"react-dom": ">= 16.4.0",
"react-router-dom": "^4.3.1"
},
"dependencies": {
"@getflywheel/local-components": "^14.0.0",
"apollo-boost": "^0.4.9",
"classnames": "^2.2.6",
"cross-fetch": "^3.1.5",
"dateformat": "^3.0.3",
"fs-extra": "^9.0.1",
"prop-types": "^15.6.2",
"react": ">= 16.4.0",
"react-dom": ">= 16.4.0",
"react-router-dom": "^4.3.1"
},
"bundledDependencies": [
"classnames",
"dateformat",
"@getflywheel/local-components",
"prop-types"
],
"engines": {
"local-by-flywheel": "^5.0.0"
}
}