This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "holocron-build",
"private": true,
"workspaces": [
"packages/*"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/holocron.git"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"preinstall": "node scripts/check-versions.js",
"postinstall": "yarn workspaces run build",
"clean": "git clean -d -X",
"lint": "eslint --ext js,jsx,snap .",
"test": "yarn test:unit",
"test:unit": "cross-env NODE_ENV=development jest",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts registry.yarnpkg.com --validate-https",
"posttest": "yarn lint && yarn test:git-history && yarn test:lockfile",
"lerna:version": "lerna version",
"lerna:publish": "lerna publish --yes"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.9.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/react": "^12.0.0",
"amex-jest-preset": "^7.0.0",
"amex-jest-preset-react": "^9.0.0",
"babel-jest": "^26.1.0",
"babel-preset-amex": "^2.1.0",
"core-js": "^3.6.4",
"cross-env": "^7.0.3",
"eslint": "^8.15.0",
"eslint-config-amex": "^16.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-dom": "^4.0.1",
"husky": "^4.0.10",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^3.22.1",
"lockfile-lint": "^4.1.0",
"prettier": "^2.8.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"regenerator-runtime": "^0.13.3"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}