-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
55
56
57
58
59
60
61
62
63
{
"name": "marbleous-build",
"version": "1.0.1",
"main": "server.js",
"watch": {
"build-js": {
"patterns": [
"src/js/**"
],
"extensions": "js",
"quiet": false
},
"build-custom-scss": {
"patterns": [
"src/sass/**"
],
"extensions": "scss",
"quiet": false
},
"build-html": {
"patterns": [
"src/html/**"
],
"extensions": "html",
"quiet": false
}
},
"scripts": {
"webpack": "webpack",
"watch": "npm-watch",
"lint": "eslint src/js/*.js",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "onchange \"src/**/*.js\" -- npm run lint --silent",
"build-custom-scss": "sass src/sass/style.scss public/css/style.css",
"build-scss": "npm run build-scss",
"build-js": "webpack",
"build-html": "node build.js",
"build": " npm run build-custom-scss && npm run build-js && npm run build-html && node build-samples.js",
"serve": "node server.js",
"start": "node server.js"
},
"dependencies": {
"@popperjs/core": "^2.9.2",
"bootstrap": "^5.1.3",
"createjs": "^1.0.1",
"sass": "^1.35.1",
"tone": "^14.7.77",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2"
},
"devDependencies": {
"concurrently": "^6.2.0",
"npm-watch": "^0.10.0"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/hg2000/marble.git"
},
"bugs": {
"url": "/~https://github.com/hg2000/marble/issues"
},
"homepage": "/~https://github.com/hg2000/marble#readme"
}