-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "shmup-ai",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"test": "npm run build:prod && ex-test -d ./dist -t ./test/test.js",
"webpack": "webpack",
"dev": "webpack serve --config webpack.development.js",
"start": "npm run dev",
"build:dev": "webpack --config webpack.development.js",
"build:prod": "webpack --config webpack.production.js",
"fix:prettier": "prettier --write **/*.{ts,md,json,js,yml} .",
"clean": "rm -rf node_modules"
},
"author": "Excalibur.js Team",
"license": "BSD-2-Clause",
"devDependencies": {
"@excaliburjs/testing": "0.25.0",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "7.1.2",
"html-webpack-plugin": "5.5.0",
"prettier": "^2.5.1",
"source-map-loader": "2.0.2",
"terser-webpack-plugin": "5.2.5",
"ts-loader": "9.2.6",
"typescript": "4.5.2",
"webpack": "5.65.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.6.0",
"webpack-merge": "5.8.0"
},
"dependencies": {
"excalibur": "0.25.1"
}
}