forked from CivicDataLab/opub-mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "turbo",
"version": "1.9.1",
"private": true,
"workspaces": [
"apps/*",
"examples/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"postbuild": "turbo run postbuild",
"dev": "turbo run dev",
"lint": "turbo run lint --filter opub-ui",
"format": "prettier --write \"**/*.{ts,tsx,md,scss}\"",
"test": "turbo run test --filter opub-ui",
"test:watch": "turbo run test:watch",
"prepare": "husky install",
"clean": "rm -rf node_modules yarn.lock",
"new-component": "new-component",
"build:packages": "turbo run build --filter=create-opub-app --filter=opub-viz --filter=opub-ui"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"classnames": "^2.3.2",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"new-component-opub": "git+https://github.com/CivicDataLab/new-component.git",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"tsup": "^6.7.0",
"turbo": "^1.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --"
]
},
"dependencies": {
"eslint-plugin-turbo": "^1.10.12"
}
}