-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 873 Bytes
/
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
{
"name": "opendata",
"version": "0.0.0",
"repository": "[email protected]:crossroadscx/opendata.git",
"author": "Chris Birk <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "yarn workspaces foreach -vpt run build",
"clean": "yarn workspaces foreach -vp run clean",
"lint": "yarn workspaces foreach -vp run lint",
"storybook": "yarn workspace visualizations storybook"
},
"workspaces": {
"packages": [
"packages/north-carolina/campaign-finance",
"packages/visualizations"
]
},
"nohoist": [
"packages/north-carolina/campaign-finance"
],
"devDependencies": {
"@babel/core": "^7.19.3",
"@types/node": "^17.0.2",
"dsv-loader": "^2.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"dotenv": "^10.0.0"
}
}