-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.77 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
46
47
48
49
50
{
"name": "playcanvas-typescript-template",
"version": "0.0.0",
"description": "It is a template for PlayCanvas projects with TypeScript support.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch --mode=production --node-env=production",
"watch:dev": "webpack --watch",
"postinstall": "node script/postinstall.js",
"lint": "eslint ./src/**/*",
"lint:fix": "eslint ./src/**/* --fix",
"push": "node ./script/push.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/querielo/playcanvas-typescript-template.git"
},
"author": "Kirill Osipov",
"license": "MIT",
"bugs": {
"url": "https://github.com/querielo/playcanvas-typescript-template/issues"
},
"homepage": "https://github.com/querielo/playcanvas-typescript-template#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@webpack-cli/generators": "^3.0.1",
"eslint": "^8.29.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"html-webpack-plugin": "^5.5.0",
"playcanvas-sync": "https://github.com/playcanvas/playcanvas-sync.git#12b8c40cd08bea9968ae2f8653619528505c4ab4",
"prettier": "^2.7.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"fs-extra": "^11.1.0",
"playcanvas": "^1.65.3"
}
}