-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 2.02 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
{
"name": "interactive-vignettes",
"version": "1.0.3",
"description": "A small framework built on top of p5js for making little interactive scenes. This framework is a part of the \"Creative Coding projects\" youtube channel.",
"homepage": "https://www.youtube.com/channel/UCQJBw4IgWV9Tp3CNgT5YtwA",
"repository": {
"type": "git",
"url": "https://github.com/CreativeCodingProjects/interactive-vignettes.git"
},
"main": "index.js",
"keywords": [
"p5js",
"interactive",
"creative coding"
],
"author": "Ben Jack",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0-beta.6",
"cpx": "^1.5.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"webpack": "^4.18.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"dev": "webpack-dev-server --config webpack.config.dev.js --mode=development -d",
"build": "run-p prepare copy_p5 copy_p5_sound copy_ccapture copy_sample_code create_assets_folder copy_atom_live_server_script create_images_folder create_sounds_folder",
"prepare": "webpack --mode=production",
"copy_p5": "cpx ./node_modules/p5/lib/p5.min.js ./build/libraries/",
"copy_p5_sound": "cpx ./node_modules/p5/lib/addons/p5.sound.min.js ./build/libraries/",
"copy_ccapture": "cpx ./node_modules/ccapture.js/build/CCapture.all.min.js ./build/libraries/ && cpx ./node_modules/ccapture.js/src/gif.worker.js ./build/libraries/",
"copy_atom_live_server_script": "cpx ./sample_code/.atom-live-server.json ./build/",
"copy_sample_code": "cpx ./sample_code/index.html ./build/ && cpx ./sample_code/my_vignettes.js ./build/",
"create_assets_folder": "mkdirp ./build/assets",
"create_images_folder": "mkdirp ./build/assets/images",
"create_sounds_folder": "mkdirp ./build/assets/sounds"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"babel-preset-env": "^1.7.0",
"ccapture.js": "^1.1.0",
"p5": "^0.7.2"
}
}