-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "list-view-demo",
"version": "1.0.0",
"description": "A demo of the ListViewComponent User Component for Phaser Editor v3.",
"main": "main.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"dev": "npx webpack serve --mode=development --env development",
"pro": "npx webpack --mode=production",
"watch": "webpack --watch"
},
"author": "Ziro",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-loader": "^8.2.2",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"expose-loader": "^1.0.3",
"source-map-loader": "^1.1.3",
"ts-loader": "^8.0.17",
"typescript": "^3.9.9",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"phaser": "^3.52.0"
}
}