generated from 9oelM/react-typescript-monorepo-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "@graphcentral/root",
"version": "1.0.0",
"main": "index.js",
"author": "9oelM <hj923@hotmail.com>",
"license": "MIT",
"private": false,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint": "eslint .",
"lint:debug": "eslint . --debug",
"lint:fix": "eslint . --fix",
"graph:dev": "npm run dev -w packages/graph",
"graph:build:dev": "npm run build:dev -w=packages/graph",
"graph:build:prod": "npm run build:prod -w=packages/graph",
"graph:package": "npm run package -w=packages/graph",
"example:dev": "npm run dev -w packages/example",
"example:prod": "npm run prod -w packages/example",
"example:deploy": "npm run deploy -w packages/example",
"scraper:dev": "npm run dev -w packages/notion-scraper",
"scraper:compile": "npm run compile -w packages/notion-scraper",
"test-data:gen": "npm run gen -w packages/test-data",
"test-data:gen:existing": "npm run gen:existing -w packages/test-data"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"prettier": "2.5.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}