forked from phaserjs/template-parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.69 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
{
"name": "template-parcel",
"version": "1.1.1",
"description": "A Phaser 3 template using Parcel 2 as the bundler.",
"source": "./index.html",
"browserslist": "> 0.25%, last 2 versions, not dead",
"scripts": {
"dev": "NODE_ENV=development parcel index.html --no-cache --config ./parcel/.parcel.dev --open",
"start": "NODE_ENV=production parcel index.html --no-cache --config ./parcel/.parcel.prod --open",
"build": "NODE_ENV=production parcel build index.html --public-url _relativeroute_ --no-source-maps --log-level error --config ./parcel/.parcel.prod",
"server": "node server/index.js",
"seed": "node server/db/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-parcel.git"
},
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-parcel/issues"
},
"homepage": "https://github.com/phaserjs/template-parcel#readme",
"devDependencies": {
"@parcel/transformer-glsl": "^2.11.0",
"express": "^4.18.3",
"parcel": "^2.11.0",
"parcel-reporter-clean-dist": "^1.0.4",
"parcel-reporter-static-files-copy": "^1.5.3",
"prisma": "^5.11.0",
"process": "^0.11.10"
},
"dependencies": {
"@prisma/client": "^5.11.0",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"i": "^0.3.7",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"nodemon": "^3.1.0",
"pg": "^8.11.3",
"phaser": "^3.80.1",
"readline": "^1.3.0"
},
"staticFiles": {
"staticPath": "public"
}
}