-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 923 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 923 Bytes
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
{
"name": "kanto",
"version": "0.1.2",
"description": "A Pokemon game engine written in Node.js.",
"repository": {
"type": "git",
"url": "https://github.com/MGPelloni/kanto.git"
},
"scripts": {
"start": "node index.js",
"watch": "gulp",
"build": "gulp build",
"compile": "gulp compile"
},
"author": "Marco Pelloni",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-preset-env": "^1.7.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-dart-sass": "^1.0.2",
"gulp-debug": "^4.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2"
},
"dependencies": {
"dotenv": "^16.4.7",
"ejs": "^3.1.7",
"express": "^4.17.1",
"howler": "^2.1.3",
"pg": "^8.7.1",
"pixi.js": "^5.0.0",
"socket.io": "^4.3.1"
}
}