-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "connect-application-kit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"start": "./packages/create-connect-app/bin/cli.js",
"build": "rimraf ./packages/create-connect-app/build && tsc",
"lint": "eslint .",
"prettier": "prettier --write '**/*.{js,ts}'",
"test": "jest --config jest.config.js",
"prepare": "husky install"
},
"workspaces": {
"packages": [
"packages/*",
"application-templates/*/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/commercetools/connect-application-kit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/commercetools/connect-application-kit/issues"
},
"homepage": "https://github.com/commercetools/connect-application-kit#readme",
"engines": {
"node": ">=16.13.0 <=20.9.0",
"npm": ">=6",
"yarn": ">=1.10"
},
"packageManager": "yarn@1.22.19",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@tsconfig/node16": "^1.0.3",
"@tsconfig/recommended": "^1.0.3",
"@types/node": "^18.7.16",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"supertest": "^7.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0"
}
}