-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.3 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.3 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
84
85
86
87
88
89
{
"name": "@contentful/app-scripts",
"version": "2.5.9",
"description": "A collection of scripts for building Contentful Apps",
"author": "Contentful GmbH",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/create-contentful-app.git",
"directory": "packages/contentful--app-scripts"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"bin": {
"contentful-app-scripts": "lib/bin.js"
},
"scripts": {
"prettier": "prettier **/*.ts --write --ignore-path .gitignore",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"test": "ts-mocha \"./{,!(node_modules)/**/}*.test.ts\"",
"test:watch": "npm t -- --watch",
"pre-commit": "lint-staged",
"build": "rimraf lib && tsc"
},
"bugs": {
"url": "https://github.com/contentful/create-contentful-app/issues"
},
"homepage": "https://github.com/contentful/create-contentful-app#readme",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@segment/analytics-node": "^2.0.0",
"adm-zip": "0.5.16",
"axios": "^1.13.5",
"bottleneck": "2.19.5",
"chalk": "4.1.2",
"commander": "12.1.0",
"contentful-management": "^11.48.1",
"dotenv": "17.2.4",
"esbuild": "^0.27.0",
"ignore": "7.0.5",
"inquirer": "8.2.7",
"lodash": "4.17.23",
"merge-options": "^3.0.4",
"open": "8.4.2",
"ora": "5.4.1",
"tiged": "^2.12.7",
"zod": "^3.24.1"
},
"gitHead": "4c3506be3f52c7a8aae17deaa75acefc9a805b42",
"devDependencies": {
"@types/adm-zip": "0.5.7",
"@types/analytics-node": "3.1.14",
"@types/chai": "4.3.16",
"@types/inquirer": "8.2.1",
"@types/lodash": "4.17.23",
"@types/mocha": "10.0.10",
"@types/node": "^22.13.10",
"@types/proxyquire": "1.3.31",
"@types/sinon": "21.0.0",
"chai": "4.5.0",
"mocha": "11.7.5",
"proxyquire": "2.1.3",
"rimraf": "5.0.8",
"sinon": "21.0.1",
"ts-mocha": "11.1.0",
"ts-node": "10.9.2"
}
}