forked from americanexpress/parrot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
62
{
"name": "parrot",
"version": "4.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/parrot.git"
},
"contributors": [
"Jack Cross <[email protected]>",
"Nathan Force <[email protected]>",
"Jason Schapiro"
],
"scripts": {
"postinstall": "lerna bootstrap",
"clean": "git clean -d -X",
"test": "jest && npm run test:git-history",
"pretest": "npm run lint",
"lint": "eslint --ext js,jsx,md ./",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:lockfile": "node lockFileLint.js",
"posttest": "npm run test:lockfile",
"lerna:version": "lerna version",
"lerna:publish": "lerna publish from-package --yes",
"lerna:deploy": "node lernaDeploy.js"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/polyfill": "^7.7.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.2.0",
"@testing-library/react-hooks": "^3.2.1",
"amex-jest-preset-react": "^5.0.2",
"babel-jest": "^24.9.0",
"babel-preset-amex": "^3.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-config-amex": "^11.1.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"glob": "^7.1.6",
"husky": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lockfile-lint": "^4.1.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"whatwg-fetch": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}