-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.14 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
{
"name": "the-way-we-move",
"version": "1.0.0",
"description": "Let's play with canvas drawing and WebAudio API, see if something interesting might appear. A first attempt to _Code like no one's watching_.",
"main": "index.js",
"scripts": {
"clear": "rm -rf dist/*",
"start": "webpack serve --open",
"build": "npm run clear && NODE_ENV=production webpack",
"postbuild": "cp src/index.html dist && cp src/manifest.json dist && cp src/styles.css dist && cp -r src/images dist",
"test": "echo \"Life's too short\" && exit 1"
},
"author": "Olivier Audard <[email protected]>",
"license": "MIT",
"dependencies": {
"@lcdp/offline-plugin": "^5.1.1",
"hex-rgb": "^5.0.0",
"request-frame": "^1.5.3",
"wcag-contrast": "^3.0.0"
},
"devDependencies": {
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/dharFr/the-way-we-move.git"
},
"bugs": {
"url": "https://github.com/dharFr/the-way-we-move/issues"
},
"homepage": "https://github.com/dharFr/the-way-we-move#readme"
}