forked from mathigon/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 902 Bytes
/
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
{
"name": "@mathigon/studio-example",
"version": "0.1.0",
"description": "Example Server for Mathigon Studio",
"license": "",
"main": "server/app.ts",
"scripts": {
"start": "ts-node -s server/app.ts",
"start-dev": "nodemon --watch 'server/**/*.ts' --exec 'ts-node' -s server/app.ts",
"watch": "mgon-build --assets --watch",
"build": "mgon-build --assets --minify --search",
"clean": "rm -rf node_modules/@mathigon/studio/public",
"dev": "npm-run-all --parallel watch start-dev",
"thumbnails": "mgon-build --thumbnails",
"translate": "mgon-build --translate --key ../../google-service-account.json",
"screenshots": "mgon-screenshots --output screenshots"
},
"dependencies": {
"@mathigon/studio": "file:../..",
"ts-node": "10.4.0",
"typescript": "4.4.4"
},
"devDependencies": {
"nodemon": "2.0.14",
"npm-run-all": "4.1.5"
}
}