-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.59 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
{
"name": "mbcodeofmusic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "rm -rf build && yarn build --watch",
"serve": "live-server build/web --port=5000",
"serve:examples": "live-server examples --port=5002",
"build": "magicbook build --config=magicbook-html.json",
"build:pdf": "magicbook build --config=magicbook-pdf.json && yarn copy-pdf",
"build:all": "yarn build && yarn build:pdf",
"copy-pdf": "cp build/pdf/pdf/consolidated.pdf build/web/the-code-of-music.pdf",
"import-notion-docs": "node scripts/notion-importer.js && yarn format-docs",
"format-docs": "yarn prettier --write 'src/notion-docs/**/*.md'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@codemirror/basic-setup": "^0.19.3",
"@codemirror/lang-javascript": "^0.19.7",
"@notionhq/client": "^0.3.1",
"axios": "^0.21.1",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "6",
"highlight.js": "^11.2.0",
"liquidjs": "^9.25.1",
"magicbook": "^0.1.33",
"magicbook-codesplit": "^0.1.6",
"monaco-editor": "0.33.0",
"p5": "^1.4.0",
"path": "^0.12.7",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"replace-in-file": "^6.2.0",
"roughjs": "^4.4.1",
"source-map-loader": "^3.0.0",
"tinyliquid": "^0.2.34",
"tone": "^14.7.77",
"webpack": "^5.0.0",
"qrcode": "^1.5.4"
},
"devDependencies": {
"firebase-tools": "^9.16.0",
"live-server": "^1.2.1"
}
}