-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.28 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
{
"name": "webshell-project",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "yarn workspace example start",
"webshell": "yarn workspace @formidable-webview/webshell",
"website": "yarn workspace website",
"start:example": "yarn workspace example start",
"start:website": "yarn workspace website start",
"build:website": "yarn workspace website build",
"build:webshell": "yarn workspace @formidable-webview/webshell build",
"test:acceptance": "yarn workspace acceptance-tests test",
"test:webshell": "yarn workspace @formidable-webview/webshell test",
"test:webshell:jest": "yarn workspace @formidable-webview/webshell test:jest",
"test:webshell:ts": "yarn workspace @formidable-webview/webshell test:ts",
"test:webshell:lint": "yarn workspace @formidable-webview/webshell test:lint",
"release:webshell": "yarn workspace @formidable-webview/webshell release-it",
"publish:example": "yarn workspace example expo publish",
"publish:website": "GIT_USER=$USER USE_SSH=true yarn workspace website deploy"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/formidable-webview/webshell.git"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@docusaurus/init": "^2.0.0-alpha.65",
"@formidable-webview/eslint-config-webjs": "^1.0.0",
"@react-native-community/bob": "^0.16.2",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-tsdoc": "^0.2.7",
"husky": "^4.3.0",
"prettier": "^2.2.0"
},
"resolutions": {
"react": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.3.tar.gz",
"react-test-renderer": "16.13.1",
"react-native-webview": "10.7.0"
},
"author": "Jules Sam. Randolph <[email protected]> (https://github.com/jsamr)",
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"eslint-plugin-prettier": "^3.1.4"
}
}