-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 1.06 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
{
"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 -p 5678 src/index.html",
"build": "cross-env NODE_ENV=production parcel build src/index.html --public-url ./",
"watch": "parcel watch src/index.html",
"format": "prettier --write src",
"format:check": "prettier --check src",
"predeploy": "npm run build"
},
"devDependencies": {
"cross-env": "^5.2.0",
"gh-pages": "^1.2.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"sass": "^1.26.10",
"typescript": "^3.9.0"
},
"dependencies": {
"@babel/preset-env": "^7.10.4",
"@types/hammerjs": "^2.0.36",
"hammerjs": "^2.0.8",
"pixi-sound": "^3.0.4",
"pixi.js": "^5.3.0",
"pixi.js-legacy": "^5.3.2"
},
"browserslist": ">0.25%, ie 11, not op_mini all"
}