-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.83 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.83 KB
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
{
"name": "ide-web-api",
"version": "0.0.1-alpha.1",
"displayName": "Web API For BlockLang IDE",
"repository": {
"type": "git",
"url": "https://github.com/blocklang/ide-web-api.git"
},
"scripts": {
"build": "dojo build --mode dist --single-bundle --omit-hash",
"test": "dojo test",
"test:unit": "dojo build --mode unit && dojo test --unit --config local",
"test:functional": "dojo build --mode functional && dojo test --functional --config local",
"test:all": "dojo build --mode unit && dojo build --mode functional && dojo test --all --config local",
"prettier": "prettier --write \"{src}/**/*.{ts}\""
},
"dependencies": {
"@blocklang/designer-core": "~0.0.1-alpha.87",
"@blocklang/web-api": "~0.0.1-alpha.1",
"@dojo/framework": "7.0.0-rc.2",
"tslib": "~1.11.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@dojo/cli": "7.0.0-rc.1",
"@dojo/cli-build-app": "7.0.0-rc.1",
"@dojo/cli-build-widget": "7.0.0-rc.1",
"@dojo/cli-test-intern": "7.0.0-rc.1",
"@types/node": "^13.13.4",
"@types/sinon": "^9.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"sinon": "^9.0.2",
"typescript": "~3.8.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": false,
"tabWidth": 4,
"useTabs": true,
"printWidth": 120,
"arrowParens": "always"
}
}