-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "incode",
"version": "4.4.3",
"description": "The next generation of the InCode Editor",
"scripts": {
"lint": "yarn eslint --ext .ts,.tsx,.js",
"prettier:check": "yarn prettier --check packages/**/*.{ts,tsx,js}",
"prettier:write": "yarn prettier --write packages/**/*.{ts,tsx,js}",
"docker:build": "docker build . -t\"mctzock/incode-editor\"",
"docker:deploy": "docker push mctzock/incode-editor",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InCodeDevs/Editor.git"
},
"keywords": [
"Editor",
"InCode",
"InCode",
"Language",
"Programming"
],
"publishConfig": {
"access": "public"
},
"author": "The InCode Developers",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/InCodeDevs/Editor/issues"
},
"homepage": "https://github.com/InCodeDevs/Editor#readme",
"dependencies": {
"eslint": "^8.11.0",
"husky": "^7.0.4",
"prettier": "^2.6.0"
},
"workspaces": [
"packages/*"
],
"private": true,
"devDependencies": {
"@incodelang/accounts": "file:./packages/accounts",
"@incodelang/accounts-client": "file:./packages/accounts-client",
"@incodelang/compiler": "file:./packages/compiler",
"@incodelang/templates": "file:./packages/templates",
"@incodelang/urlshorter": "file:./packages/urlshorter"
}
}