-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.17 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.17 KB
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
{
"name": "@contentful/create-contentful-app",
"version": "2.2.3",
"description": "A template for building Contentful Apps",
"keywords": [
"contentful",
"create-contentful-app"
],
"author": "Contentful GmbH",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/create-contentful-app.git",
"directory": "packages/contentful--create-contentful-app"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"main": "lib/index.js",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"bin": {
"create-contentful-app": "lib/index.js"
},
"scripts": {
"prettier": "prettier **/*.ts --write --ignore-path .gitignore",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"pre-commit": "lint-staged",
"build": "tsc",
"test": "mocha 'test/**/*.spec.{js,ts}'"
},
"dependencies": {
"@contentful/app-scripts": "2.5.7",
"@segment/analytics-node": "^2.2.0",
"chalk": "4.1.2",
"commander": "12.1.0",
"inquirer": "8.2.6",
"merge-options": "^3.0.4",
"node-fetch": "2.6.7",
"rimraf": "5.0.8",
"tildify": "2.0.0",
"validate-npm-package-name": "7.0.1"
},
"bugs": {
"url": "https://github.com/contentful/create-contentful-app/issues"
},
"homepage": "https://github.com/contentful/create-contentful-app#readme",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/analytics-node": "^3.1.9",
"@types/chai-as-promised": "^7.1.5",
"@types/chalk": "2.2.0",
"@types/inquirer": "8.2.1",
"@types/mocha": "^10.0.1",
"@types/node": "14.18.63",
"@types/node-fetch": "^2.6.2",
"@types/rimraf": "3.0.2",
"@types/sinon": "^21.0.0",
"@types/sinon-chai": "^3.2.9",
"@types/tildify": "2.0.2",
"@types/validate-npm-package-name": "4.0.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"contentful-management": "11.66.0",
"mocha": "^11.2.2",
"sinon": "^21.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.2"
},
"gitHead": "4c3506be3f52c7a8aae17deaa75acefc9a805b42"
}