-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.19 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
{
"name": "sheeted",
"description": "Table UI web application framework",
"version": "1.3.1",
"author": "Sheeted team <sheeted@realglobe.jp>",
"bugs": {
"url": "https://github.com/realglobe-Inc/sheeted/issues"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/mongoose": "^5.7.3",
"@types/node": "^14.0.6",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"mongoose": "^5.9.3",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=14"
},
"homepage": "https://github.com/realglobe-Inc/sheeted#readme",
"husky": {
"hooks": {
"pre-commit": "./dev/git-hooks/pre-commit.sh"
}
},
"keywords": [
"Low-Code",
"Sheet",
"Web application framework"
],
"license": "Apache-2.0",
"private": true,
"repository": "realglobe-Inc/sheeted",
"scripts": {
"build": "yarn w/core build && yarn w/mongoose build && yarn w/server build && yarn w/cli build && yarn w/example build",
"doc": "npx include-file-cli dev/doc/readme.template.md README.md && npx doctoc --github README.md && ./dev/scripts/doc.sh",
"format": "prettier --write '(packages|examples)/**/*.ts?(x)' --ignore-path .eslintignore",
"lint": "eslint --ext .ts,.tsx --cache --cache-location tmp/.eslintcache packages examples",
"preinstall": "./dev/scripts/only-yarn.js",
"prepare": "yarn build",
"test": "yarn w/core test && yarn w/server test && yarn w/cli test && yarn w/mongoose test && yarn w/ui test",
"typecheck": "tsc -p tsconfig.eslint.json",
"w/cli": "yarn workspace @sheeted/cli",
"w/core": "yarn workspace @sheeted/core",
"w/example": "yarn workspace sheeted-examples",
"w/mongoose": "yarn workspace @sheeted/mongoose",
"w/server": "yarn workspace @sheeted/server",
"w/ui": "yarn workspace @sheeted/ui"
},
"workspaces": [
"packages/*",
"examples"
]
}