-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 971 Bytes
/
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
{
"name": "canvas-starter",
"version": "1.0.0",
"description": "Simple template for single page canvas projects.",
"main": "webpack.config.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devmattrick/canvas-starter.git"
},
"keywords": [
"canvas",
"html5",
"starter",
"project",
"webpack",
"typescript"
],
"author": "Matthew McCune <contact@matthew.cx>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devmattrick/canvas-starter/issues"
},
"homepage": "https://github.com/devmattrick/canvas-starter#readme",
"devDependencies": {
"cross-env": "^5.2.0",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^5.3.1",
"typescript": "^3.2.1",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}