This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.93 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
{
"name": "rocky-playground",
"version": "2022.05.00",
"description": "A neural network playground for earth scientists",
"keywords": [
"geology",
"geophysics",
"machine learning",
"neural networks"
],
"author": "Agile Scientific <[email protected]> (https://agilescientific.com)",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/agilescientific/rocky-playground/issues"
},
"homepage": "https://playground.geosci.ai/",
"private": true,
"scripts": {
"clean": "rimraf dist",
"prep": "mkdirp dist && concat node_modules/material-design-lite/material.min.js node_modules/seedrandom/seedrandom.min.js > dist/lib.js",
"build-css": "concat node_modules/material-design-lite/material.min.css styles.css > dist/bundle.css",
"watch-css": "concat node_modules/material-design-lite/material.min.css styles.css -o dist/bundle.css",
"build-html": "copyfiles index.html favicon.ico dist",
"watch-html": "concat index.html -o dist/index.html",
"build-js": "browserify src/playground.ts -p [tsify] | uglifyjs -c > dist/bundle.js",
"watch-js": "watchify src/playground.ts -p [tsify] -v --debug -o dist/bundle.js",
"build": "npm run prep && npm run build-js && npm run build-css && npm run build-html",
"watch": "npm run prep && concurrently \"npm run watch-js\" \"npm run watch-css\" \"npm run watch-html\"",
"serve": "npx serve dist/",
"serve-watch": "concurrently \"npx serve dist/\" \"npm run watch\""
},
"devDependencies": {
"@types/d3": "^3.5.34",
"concat": "^1.0.3",
"concurrently": "3.1.0",
"copyfiles": "1.0.0",
"mkdirp": "^1.0.4",
"rimraf": "2.5.4",
"serve": "^13.0.1",
"tsify": "^4.0.0",
"typescript": "^2.9",
"uglify-js": "^3.4.10",
"watchify": "^4.0.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"d3": "^3.5.16",
"material-design-lite": "^1.3.0",
"prismjs": "^1.24.1",
"seedrandom": "^3.0.0"
}
}