-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
108 lines (108 loc) · 2.89 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "neptune",
"repository": {
"type": "git",
"fullname": "transferwise/neptune",
"url": "git+https://github.com/transferwise/neptune-web.git"
},
"keywords": [],
"author": {
"name": "TransferWise",
"url": "https://transferwise.com/"
},
"bugs": {
"url": "https://github.com/transferwise/neptune-web/issues"
},
"homepage": "https://transferwise.github.io/neptune",
"license": "MIT",
"version": "1.0.0",
"main": "packages/components/build/main.js",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@transferwise/eslint-config": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"lerna": "^3.20.2",
"prettier": "^2.0.2",
"prop-types": "^15.6.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"lint-staged": "^10.2.2",
"npm-run-all": "^4.1.5",
"cpx": "^1.5.0",
"husky": "^4.2.5",
"bootstrap": "github:transferwise/bootstrap#semver:^5.20.0",
"currency-flags": "^1.2.1"
},
"scripts": {
"setup": "yarn install && yarn build",
"build": "lerna run build --stream",
"dev": "lerna run dev --parallel --stream",
"docs": "lerna run docs --parallel --stream",
"docs:build": "lerna run docs:build",
"docs:deploy": "lerna run docs:deploy",
"docs:deploy-for-branch": "lerna run docs:deploy-for-branch",
"test": "lerna run test --stream",
"test:watch": "cd packages/components && yarn test:watch",
"clean": " npm-run-all clean:*",
"clean:modules": " lerna exec -- rm -rf ./node_modules && rm -rf node_modules && rm -rf .next",
"clean:lock": "find . -name '*.lock' -or -name '*-lock.json' -type f -delete",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix --stream",
"preinstall": "node enforce-yarn.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e -V"
}
},
"lint-staged": {
"^(?!.*code).*js$": [
"eslint --fix",
"git add"
],
"*.{less,yaml,yml,json}": [
"prettier --find-config-path --write",
"git add"
]
},
"browserslist": [
"Chrome >=71",
"Firefox >=71",
"iOS >=11",
"Safari >=11.1",
"IE 11",
"Opera >=65",
"Edge >=18"
],
"prettier": "@transferwise/eslint-config/.prettierrc.js",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
0,
"always",
140
],
"subject-case": [
0
]
}
}
}