This repository was archived by the owner on Feb 6, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "deckdeckgo",
"version": "7.1.0",
"author": "David Dal Busco",
"description": "The web open source editor for presentations",
"private": true,
"scripts": {
"ic:install:data": "node canisters/scripts/ic.installcode.mjs",
"ic:types": "node ./canisters/scripts/ic.types.js",
"build": "npm run ic:types && cd studio && npm run build:ic",
"postbuild": "prettier --write providers/ic"
},
"workspaces": [
"providers/*",
"webcomponents/*",
"templates/*",
"utils/*"
],
"devDependencies": {
"@stencil/core": "^2.17.4",
"@stencil/postcss": "^2.1.0",
"@stencil/sass": "^1.5.2",
"@types/jest": "^26.0.24",
"@types/puppeteer": "5.4.4",
"autoprefixer": "^10.4.8",
"esbuild": "^0.14.10",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-cli": "^27.4.7",
"node-fetch": "^3.1.1",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"pretty-quick": "^3.1.3",
"puppeteer": "^13.1.3",
"typescript": "^4.4.2"
},
"repository": {
"type": "git",
"url": "git://github.com/deckgo/deckdeckgo.git"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@deckdeckgo/utils": "file:utils/utils"
}
}