-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 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
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "parcel-typescript-example",
"version": "1.0.0",
"description": "TypeScript app with parcel bundler.",
"main": "lib/parcel-typescript-example.js",
"scripts": {
"start": "parcel serve src/index.html",
"build": "cross-env NODE_ENV=production parcel build src/index.html --public-url .",
"watch": "parcel watch src/index.html",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/parcel-typescript-example.git"
},
"bugs": {
"url": "https://github.com/azu/parcel-typescript-example/issues"
},
"homepage": "https://azu.github.io/parcel-typescript-example/",
"devDependencies": {
"cross-env": "^5.2.0",
"gh-pages": "^1.2.0",
"parcel-bundler": "^1.9.7",
"typescript": "^2.9.2"
},
"dependencies": {
"@svgr/parcel-plugin-svgr": "^5.4.0"
}
}