-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
54 lines (54 loc) · 1.83 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
54
{
"name": "tonejs.github.io",
"version": "1.0.0",
"description": "Tone.js website",
"main": "index.md",
"scripts": {
"watch:html": "nodemon --exec \"npm run build:html\" --ext ts,hbs --ignore scripts/type.ts --ignore scripts/sidebar.ts",
"watch:js": "npm run build:js -- --watch --mode=development",
"watch:css": "npm run build:css -- -w",
"watch": "npm run test:output_dir && concurrently \"npm run watch:css\" \"npm run watch:js\" \"npm run watch:html\"",
"build:html": "node -r ts-node/register ./doc-gen/src/index.ts --output=$npm_config_output",
"build:css": "node-sass ./doc-gen/style/ -o $npm_config_output/assets/",
"build:js": "webpack --config ./doc-gen/scripts/webpack.config.js",
"test:output_dir": "[ -z \"$npm_config_output\" ] && echo \"SPECIFY OUTPUT DIR\" && exit 1 || echo $npm_config_output",
"build:docs": "npm run test:output_dir && npm run build:html && npm run build:js &&npm run build:css",
"build": "zx scripts/build_latest.mjs && zx scripts/create_redirect.mjs",
"examples": "node scripts/copy_examples.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tonejs/tonejs.github.io.git"
},
"author": "Yotam Mann",
"license": "MIT",
"devDependencies": {
"concurrently": "^4.1.2",
"nodemon": "^1.19.2",
"semver": "^5.6.0"
},
"dependencies": {
"@tonejs/plot": "0.0.35",
"@types/node": "^12.7.5",
"css-loader": "^3.2.0",
"dts-bundle": "^0.7.3",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"glob-promise": "^3.4.0",
"handlebars": "^4.7.6",
"highlight.js": "^10.4.1",
"marked": "^0.7.0",
"monaco-editor": "^0.18.1",
"style-loader": "^1.0.0",
"tmp": "^0.2.1",
"tmp-promise": "^3.0.3",
"tone": "^15.1.3",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"yargs": "^14.0.0",
"zx": "^8.0.2"
}
}