-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.57 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
{
"name": "lke-plugin-hello-world",
"version": "0.0.1",
"description": "A boilerplate of how to start Linkurious plugin development",
"main": "index.js",
"scripts": {
"tsc": "tsc -b",
"clean": "rm -rf hello-world.lke",
"build": "npm-run-all clean build:public build:backend copyManifest",
"build:public": "tsc -b src/public && cd src/public/dist && browserify *.js --debug -o ../../../hello-world.lke/public/index.js && npm run copy-assets",
"copy-assets": "cp -R src/public/assets hello-world.lke/public && cp src/public/index.html hello-world.lke/public",
"build:backend": "tsc -b src/backend && npm run installProduction",
"installProduction": "cp package.json hello-world.lke && cd hello-world.lke && npm install --production",
"copyManifest": "cp -R src/manifest.json hello-world.lke/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Linkurious/lke-plugin-hello-world.git"
},
"author": "Linkurious SAS",
"license": "ISC",
"bugs": {
"url": "https://github.com/Linkurious/lke-plugin-hello-world/issues"
},
"homepage": "https://github.com/Linkurious/lke-plugin-hello-world#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.9",
"@types/superagent": "^4.1.10",
"browserify": "^17.0.0",
"express": "^4.17.1",
"npm-run-all": "^4.1.5",
"typescript": "^4.1.3",
"@linkurious/rest-client": "^2.10.3",
"ogma-helper": "0.0.1-PR-6.4"
},
"dependencies": {
"body-parser": "^1.19.0"
}
}