-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.48 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
{
"name": "@jaspero/jms",
"version": "7.19.3",
"license": "MIT",
"scripts": {
"start:emulator": "firebase emulators:start --export-on-exit=.emulator-export --import=.emulator-export",
"start:cms": "npm run start:cms --prefix client",
"start:cms:live": "npm run start:cms:live --prefix client",
"start:functions": "npm --prefix functions run serve",
"start:functions:watch": "npm --prefix functions run watch",
"start:setup": "npm --prefix definitions setup",
"start:setup:prod": "npm --prefix definitions run setup:prod",
"start:definitions": "npm --prefix definitions run start",
"build:cms": "npm --prefix client run build",
"build:functions": "npm --prefix functions run build",
"build:definitions": "npm --prefix definitions run build",
"build": "npm run build:definitions && npm run build:cms && npm run build:functions",
"lint:client": "npm --prefix client run lint",
"lint:functions": "npm --prefix functions run lint",
"lint": "npm run lint:client && npm run lint:functions",
"firebase": "firebase",
"deploy": "firebase deploy --only storage,firestore,functions:cms,hosting",
"semantic-release": "semantic-release",
"config:set": "firebase functions:config:set",
"dev": "concurrently \"npm run start:emulator\" \"npm run start:cms\"",
"setup": "npm ci && npm --prefix definitions ci && npm --prefix functions ci && npm --prefix client ci && npm --prefix .github/utils ci",
"write:indexes": "firebase firestore:indexes > firestore.indexes.json"
},
"author": {
"name": "Jaspero Ltd",
"email": "info@jaspero.co"
},
"keywords": [
"cms",
"JSON",
"JSON schema",
"firebase",
"angular"
],
"repository": {
"type": "git",
"url": "https://github.com/jaspero/jms"
},
"bugs": {
"url": "https://github.com/jaspero/jms/issues"
},
"homepage": "https://jaspero-jms.firebaseapp.com",
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.0",
"concurrently": "7.0.0",
"semantic-release": "21.0.1",
"tsc-watch": "4.6.2",
"typescript": "^4.6.4"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git"
]
}
}