forked from pdq/contentful-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.93 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
{
"name": "contentful-table",
"description": "A simple table Contentful UI extension",
"version": "1.0.1",
"main": "src/index.js",
"scripts": {
"build": "parcel build src/index.html --public-url ./",
"clean": "rimraf dist",
"contentful:create": "npm run source-vars && contentful extension create --id ${EXTENSION_ID} --space-id ${SPACE_ID} --name ${EXTENSION_NAME} --management-Token ${CONTENTFUL_MANAGEMENT_ACCESS_TOKEN} --field-types Object --src \"${EXTENSION_SRC}\"",
"contentful:update": "npm run source-vars && contentful extension update --id ${EXTENSION_ID} --space-id ${SPACE_ID} --name ${EXTENSION_NAME} --management-Token ${CONTENTFUL_MANAGEMENT_ACCESS_TOKEN} --field-types Object --src \"${EXTENSION_SRC}\" --force",
"lint": "eslint -c .eslintrc.json --ext .ts src/",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"prestart": "npm run clean",
"publish": "gh-pages -d dist",
"source-vars": "source ./.env && echo ${EXTENSION_ID} ${EXTENSION_SRC}",
"start": "parcel src/index.html",
"tsc": "tsc --noEmit"
},
"homepage": "https://github.com/pdq/contentful-table#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pdq/contentful-table.git"
},
"bugs": {
"url": "https://github.com/pdq/contentful-table/issues"
},
"dependencies": {
"contentful-ui-extensions-sdk": "^3.23.2"
},
"devDependencies": {
"@pdq/eslint-plugin-pdq": "^2.0.6",
"@types/node": "^14.11.2",
"contentful-cli": "^1.4.36",
"eslint": "^7.10.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2",
"sass": "^1.26.11",
"sortpack": "^2.1.9",
"typescript": "^4.0.3"
},
"lint-staged": {
"package.json": [
"sortpack"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
"last 1 Chrome versions"
]
}