-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 968 Bytes
/
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
{
"name": "pokemon-game",
"version": "1.0.2",
"description": "A Pokemon game to teach Preston about why coding is fun",
"main": "src/game.ts",
"scripts": {
"build": "rollup --config rollup.config.dist.js",
"watch": "rollup --watch --config rollup.config.dev.js"
},
"author": "Preston & Willy Wu <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash-es": "^4.17.21",
"minimist": "^1.2.6",
"path-parse": "^1.0.7",
"prettier": "^2.6.2",
"serialize-javascript": "^6.0.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.3.4",
"phaser": "^3.50.0",
"rollup": "^2.35.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.1.3"
}
}