2019-03-12 06:45:56 +03:00
|
|
|
{
|
|
|
|
"name": "pyright",
|
|
|
|
"displayName": "Pyright",
|
2019-03-24 07:06:26 +03:00
|
|
|
"description": "VS Code language support and type checking for Python",
|
2019-03-24 07:55:32 +03:00
|
|
|
"version": "1.0.1",
|
2019-03-12 06:45:56 +03:00
|
|
|
"scripts": {
|
|
|
|
"postinstall": "cd server && npm install && cd ../client && npm install && cd ..",
|
|
|
|
"build": "npm run build:client && npm run build:server",
|
|
|
|
"build:client": "cd client && npm run build && cd ..",
|
|
|
|
"build:server": "cd server && npm run build && cd ..",
|
2019-03-20 00:24:51 +03:00
|
|
|
"build:analyzer": "cd server && npm run build:analyzer && cd ..",
|
|
|
|
"package": "npm run build && cd client && npx vsce package && cd .."
|
2019-03-12 06:45:56 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/mocha": "^5.2.5",
|
|
|
|
"@types/node": "^11.10.5",
|
|
|
|
"typescript": "^3.2.2"
|
|
|
|
}
|
|
|
|
}
|