-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "glaze-demo-app",
"version": "0.1.0",
"private": true,
"homepage": "https://ceramicstudio.github.io/glaze-demo-app",
"scripts": {
"ceramic": "ceramic daemon",
"create-model": "node --experimental-json-modules ./scripts/create-model.mjs",
"publish-model": "node --experimental-json-modules ./scripts/publish-model.mjs",
"start": "webpack serve --mode development",
"build": "del build && cp -r public build && webpack --mode production",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@ceramicnetwork/http-client": "^1.4.3",
"@ceramicnetwork/stream-tile": "^1.4.0",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@glazed/datamodel": "^0.2.0",
"@glazed/did-datastore": "^0.2.0",
"@glazed/tile-loader": "^0.1.1",
"@mui/icons-material": "^5.1.0",
"@mui/material": "^5.1.0",
"@mui/styles": "^5.1.0",
"@stablelib/random": "^1.0.0",
"dids": "^2.4.0",
"key-did-provider-ed25519": "^1.0.1",
"key-did-resolver": "^1.4.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@ceramicnetwork/cli": "^1.8.0",
"@ceramicnetwork/common": "^1.7.1",
"@glazed/devtools": "^0.1.3",
"@types/node": "^16.11.6",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"css-loader": "^6.5.1",
"del-cli": "^4.0.1",
"esbuild-loader": "^2.16.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"typescript": "^4.4.4",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}