-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
39
40
41
42
43
44
45
{
"name": "createjs-webpack-starter-template",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"author": "",
"license": "ISC",
"keywords": [
"Createjs",
"Starter Template",
"Game Setup"
],
"dependencies": {
"@babel/core": "^7.22.9",
"@pixi/sound": "^5.2.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"createjs-module": "^0.8.3",
"css-loader": "^6.8.1",
"es6": "0.0.7",
"html-webpack-plugin": "^5.5.3",
"json-loader": "^0.5.7",
"pixi.js": "^7.2.4",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.3"
},
"devDependencies": {
"@babel/core": "7.2.0",
"sass": "^1.64.0",
"sass-loader": "^13.3.2",
"stats.js": "^0.17.0",
"typescript": "4.4.4",
"webpack": "^5.88.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"scripts": {
"start": "webpack serve --mode development --port 8081 --open",
"build": "webpack --mode production"
}
}