-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.55 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
51
52
53
54
{
"name": "client-engine-nodejs-getting-started",
"version": "0.1.0",
"private": true,
"description": "A sample LeanCloud Client Engine app",
"main": "build/index.js",
"scripts": {
"lint": "tslint src/*",
"lint:fix": "tslint src/* --fix",
"build": "tsc --build tsconfig.json && NODE_ENV=production parcel build src/client/index.html -d dist/client",
"start": "node -r source-map-support/register build/index.js",
"dev:client": "parcel src/client/index.html -p $LEANCLOUD_APP_PORT --open",
"dev": "npm run build && npm run start",
"postinstall": "npm run build"
},
"keywords": [
"leancloud",
"client-engine",
"master-client"
],
"license": "MIT",
"dependencies": {
"@leancloud/client-engine": "^1.0.2",
"@leancloud/play": "^1.0.0",
"@leancloud/stateful-game": "^0.4.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"debug": "^4.3.1",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"lodash": "^4.17.20",
"rxjs": "^6.6.3",
"source-map-support": "^0.5.19",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-hot-reload-api": "^2.3.4",
"vue-property-decorator": "^9.1.2"
},
"engines": {
"node": "10.x"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/debug": "4.1.5",
"@types/express": "^4.17.9",
"@types/lodash": "^4.14.165",
"@vue/component-compiler-utils": "^3.2.0",
"axios": "^0.21.0",
"parcel-bundler": "^1.12.4",
"tslint": "^5.20.1",
"typescript": "^4.1.2",
"vue-template-compiler": "^2.6.12"
}
}