-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.45 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@onebeyond/agnostic-cms-harmonizer",
"version": "0.2.3",
"description": "Library to manage the communication with any CMS agnostic to the user",
"repository": {
"type": "git",
"url": "git+https://github.com/onebeyond/agnostic-cms-harmonizer.git"
},
"main": "build/index.js",
"keywords": [
"cms"
],
"author": "One Beyond",
"license": "MIT",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"prebuild": "rimraf ./build",
"build": "tsc --build tsconfig.build.json",
"dev": "ts-node src/index.ts",
"start": "node build/index.js",
"prepare": "is-ci || husky",
"format": "npx prettier --write .",
"docs:build": "npx typedoc",
"docs:build:watch": "npm run docs:build -- --watch",
"docs:serve": "PORT=4000 npx serve --no-clipboard docs",
"test:unit": "npx jest",
"pretest:ci": "npm run build",
"test:ci": "npm run test:unit -- --ci && npm run test:e2e -- --ci",
"test:watch": "npx jest -- --watchAll",
"test:e2e": "npx jest --config __tests__/e2e/jest.e2e-config.js",
"test:e2e:watch": "npx jest --config __tests__/e2e/jest.e2e-config.js --watchAll",
"test:e2e:watch:inspect": "node --inspect ./node_modules/jest/bin/jest.js --config __tests__/e2e/jest.e2e-config.js --watchAll --testTimeout 999999",
"check-updates": "npx npm-check-updates -u",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@stylistic/eslint-plugin": "^1.6.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"node-notifier": "^10.0.1",
"npm-check-updates": "^16.14.15",
"prettier": "3.2.5",
"rimraf": "^5.0.5",
"serve": "^14.2.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.12",
"typescript": "^5.3.3"
},
"dependencies": {
"contentful": "^10.6.21",
"is-ci": "^3.0.1"
},
"optionalDependencies": {
"contentful-cli": "^3.1.43"
},
"files": [
"./build/index.js",
"./build/index.d.ts",
"./build/src/**/*"
]
}