-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "@contentful/create-contentful-app",
"description": "A template for building Contentful Apps",
"author": "Contentful GmbH",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/contentful/create-contentful-app.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "lerna run test",
"lint": "lerna run lint",
"build": "lerna run build",
"version": "lerna version --no-private --conventional-commits --create-release github --yes --exact",
"publish-packages": "lerna publish from-git --yes",
"version:canary": "npm run version -- --conventional-prerelease",
"publish-packages:canary": "npm run publish-packages -- --canary",
"pre-commit": "lerna run pre-commit",
"prepare": "husky"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@types/mocha": "10.0.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-eslint": "10.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-node": "11.1.0",
"fs-extra": "11.3.0",
"husky": "9.1.7",
"lerna": "6.6.2",
"lint-staged": "15.4.1",
"mocha": "10.8.2",
"nx": "20.3.1",
"prettier": "2.8.8",
"proxyquire": "2.1.3",
"sinon": "19.0.2",
"typescript": "4.9.5"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"open": "^10.1.0"
}
}