-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 858 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 858 Bytes
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
{
"name": "patternsofevil",
"version": "1.0.0",
"description": "Spiral, Electric Wizard inspired drawing made with Axidraw",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run wds",
"build": "rimraf dist && npx webpack --mode production",
"wds": "npx webpack-dev-server",
"deploy": "npm run build && git add . && git commit -m ':rocket: deploy' && git push && git subtree push --prefix dist origin gh-pages"
},
"keywords": [
"axidraw"
],
"author": "Naomi Hauret",
"license": "MIT",
"devDependencies": {
"css-loader": "^0.28.10",
"html-webpack-plugin": "^3.0.6",
"rimraf": "^2.6.2",
"style-loader": "^0.20.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"canvas2svg": "^1.0.16",
"dat.gui": "^0.7.1"
}
}