generated from excaliburjs/template-ts-parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "template-ts-parcel",
"version": "1.0.0",
"private": true,
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "parcel index.html --no-autoinstall",
"typecheck": "tsc -p . --noEmit",
"build": "parcel build index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/excaliburjs/template-ts-parcel.git"
},
"author": "",
"license": "BSD-2",
"bugs": {
"url": "https://github.com/excaliburjs/template-ts-parcel/issues"
},
"homepage": "https://github.com/excaliburjs/template-ts-parcel#readme",
"assetsPath": "static/",
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"parcel-bundler": "^1.12.4",
"parcel-plugin-asset-copier": "^1.1.0",
"prettier": "^2.0.5",
"sass": "^1.26.10",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,scss,md}": "prettier --write"
},
"dependencies": {
"excalibur": "^0.24.3"
}
}