-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.43 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.43 KB
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
46
47
48
{
"name": "fgjte21",
"version": "1.0.0",
"description": "The most amazing FGJ game",
"main": "src/index.ts",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint-config-prettier": "^7.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"raw-loader": "^4.0.2",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-obfuscator": "^3.2.0"
},
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.js",
"build": "rimraf dist && webpack --config webpack/webpack.prod.js"
},
"private": true,
"author": "Joonas Reinikka <joonas.reinikka@gmail.com>",
"license": "CC0 1.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"open-simplex-noise": "^2.4.0",
"phaser": "^3.52.0",
"phaser3-rex-plugins": "^1.1.39"
}
}