forked from playcanvas/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.85 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "examples-browser",
"version": "0.0.0",
"description": "Examples browser for the PlayCanvas Engine",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env ENVIRONMENT=production webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch",
"local": "cross-env ENGINE_PATH=../build/playcanvas.js EXTRAS_PATH=../build/playcanvas-extras.js concurrently --kill-others \"npm run build:watch\"",
"local:dbg": "cross-env ENGINE_PATH=../build/playcanvas.dbg.js EXTRAS_PATH=../build/playcanvas-extras.js concurrently --kill-others \"npm run build:watch\"",
"serve": "serve dist",
"thumbnails": "node ./thumbnails.js",
"build:directory": "node ./example-directory.js"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"@playcanvas/eslint-config",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"lines-between-class-members": [
"error",
"always",
{
"exceptAfterSingleLine": true
}
]
}
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/standalone": "^7.14.7",
"@monaco-editor/react": "^4.2.1",
"@playcanvas/eslint-config": "^1.0.7",
"@playcanvas/observer": "1.1.0",
"@playcanvas/pcui": "2.1.1",
"@reach/router": "^1.3.4",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"concurrently": "^6.2.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.2",
"css-loader": "^5.2.6",
"error-overlay-webpack-plugin": "^0.4.2",
"eslint": "^7.30.0",
"html-webpack-plugin": "^5.3.2",
"monaco-editor": "^0.25.2",
"monaco-editor-webpack-plugin": "^4.0.0",
"playcanvas": "^1.44.2",
"prop-types": "^15.7.2",
"puppeteer": "^10.1.0",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"serve": "^12.0.0",
"sharp": "^0.28.3",
"style-loader": "^3.0.0",
"typescript": "^4.3.5",
"webpack": "^5.42.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"author": "PlayCanvas <[email protected]>",
"license": "MIT"
}