-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.31 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
55
56
57
58
59
60
{
"name": "examples",
"version": "0.0.0-dev",
"description": "Examples repo",
"main": "package.json",
"scripts": {
"test": "exit 0",
"start": "tsx scripts/start.ts",
"build": "npm run build --workspaces"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romcal/romcal-examples.git"
},
"keywords": [
"examples",
"romcal",
"react",
"html",
"iife",
"rest-api"
],
"author": {
"name": "Etienne Magnier",
"email": "etienne.magnier@gmail.com",
"url": "https://github.com/emagnier"
},
"contributors": [
{
"name": "Matej Voboril",
"email": "tobiah@pm.me",
"url": "https://github.com/TobiTenno"
},
{
"name": "Tukusej’s Sirs",
"email": "tukusejssirs@protonmail.com",
"url": "https://github.com/tukusejssirs"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/romcal/romcal-examples/issues"
},
"homepage": "https://github.com/romcal/romcal-examples#readme",
"workspaces": [
"html-web-page",
"react-app",
"rest-api-with-fastify",
"rest-api-with-express"
],
"devDependencies": {
"@types/yargs": "^17.0.33",
"cli-select": "^1.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"yargs": "^17.7.2"
},
"type": "module"
}