-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "permit-finder",
"description": "City of Boston - Permit Finder",
"version": "0.0.0",
"license": "CC0-1.0",
"private": true,
"engines": {
"yarn": "^1.6.0"
},
"jest": {
"projects": [
"<rootDir>/modules-js/*",
"<rootDir>/services-js/*"
]
},
"workspaces": {
"packages": [
"services-js/*",
"modules-js/*",
"templates/js-*",
"templates/js-*/build/*"
],
"nohoist": [
"**/@cityofboston/config-typescript",
"**/acorn",
"**/acorn-dynamic-import"
]
},
"scripts": {
"lint": "eslint .",
"prepare": "lerna run --scope @cityofboston/* prepare",
"precommit": "lint-staged && lerna run --since HEAD --stream --no-sort precommit",
"prepush": "jest --clearCache && lerna run --no-sort --stream --since origin/develop --ignore templates.* test",
"watch": "lerna run --parallel --scope @cityofboston/* watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --quiet"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@yarnpkg/lockfile": "1.0.0",
"babel-eslint": "11.0.0-beta.0",
"eslint": "8.5.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-emotion": "10.0.7",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react-hooks": "1.5.0",
"husky": "0.14.3",
"jest": "24.8.0",
"jest-environment-jsdom": "24.0.0",
"jest-environment-node": "24.0.0",
"khaos": "0.9.3",
"lerna": "4.0.0",
"lint-staged": "8.1.0",
"prettier": "1.17.0",
"typescript": "4.4.2"
}
}