-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.56 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "datocms-plugin-auto-uuid",
"homepage": "https://github.com/sebklo/datocms-plugin-auto-uid",
"version": "0.0.3",
"description": "Generates UUID",
"main": "index.js",
"scripts": {
"start": "npx webpack-dev-server --port 5000",
"dist": "npx webpack --progress",
"addToProject": "yo datocms-plugin:add-to-project",
"prepublishOnly": "rimraf lib dist && mkdir dist && npm run dist",
"lint": "eslint \"./src/*.{js,jsx}\"",
"test": "echo 1"
},
"keywords": [
"datocms",
"datocms-plugin",
"field-addon",
"string-field",
"auto-uuid"
],
"files": [
"dist",
"docs"
],
"author": "Klosiek <klosiek19791@gmail.com>",
"license": "ISC",
"datoCmsPlugin": {
"title": "Datocms Plugin Auto UUID",
"previewImage": "docs/preview.gif",
"coverImage": "docs/cover.png",
"entryPoint": "dist/index.html",
"pluginType": "field_addon",
"fieldTypes": [
"string"
],
"parameters": {
"global": [
{
"id": "datoCmsApiToken",
"label": "DatoCMS API Token",
"type": "string",
"required": true,
"hint": "The DatoCMS API read-only token to use to query assets"
}
],
"instance": []
}
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0-beta.54",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta",
"css-loader": "^1.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"generator-datocms-plugin": "^1.0.24",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"serve": "^10.0.2",
"style-loader": "^0.23.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.10",
"yo": "^3.1.1"
},
"dependencies": {
"classname": "^0.0.0",
"datocms-client": "^3.4.18",
"html-webpack-tags-plugin": "^2.0.17",
"prop-types": "^15.7.2",
"randomstring": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}