-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.33 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
44
45
46
47
48
49
50
51
52
{
"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.pug",
"build": "cross-env NODE_ENV=production parcel build src/index.pug --public-url .",
"watch": "parcel watch src/index.pug",
"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": {
"@types/pixi.js": "^4.8.3",
"@types/express": "^4.16.0",
"@types/morgan": "^1.7.35",
"@types/socket.io": "^2.1.0",
"@types/socket.io-client": "^1.4.32",
"cross-env": "^5.2.0",
"gh-pages": "^1.2.0",
"node-sass": "^4.10.0",
"parcel-bundler": "^1.9.7",
"pug": "^2.0.3",
"typescript": "^2.9.2"
},
"dependencies": {
"express": "^4.16.4",
"morgan": "^1.9.1",
"pixi.js": "^4.8.2",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1"
}
}