generated from excaliburjs/template-ts-parcel
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "template-ts-parcel",
"version": "1.0.0",
"private": true,
"description": "",
"scripts": {
"start": "parcel serve index.html",
"build": "parcel build ./index.html --dist-dir ./dist --public-url ./",
"typecheck": "tsc -p . --noEmit",
"test": "npm run build && ex-test -d ./dist -t ./test/test.js"
},
"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.3.8",
"lint-staged": "10.5.4",
"parcel": "2.12.0",
"prettier": "2.8.8",
"typescript": "4.9.5",
"@excaliburjs/testing": "0.25.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,scss,md}": "prettier --write"
},
"dependencies": {
"excalibur": "0.30.3"
}
}