-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
{
"name": "owiki",
"version": "1.0.0",
"description": "A modern free open-source wiki solution.",
"scripts": {
"install": "concurrently \"cd functions && npm install\" \"cd react && npm install\"",
"buildServer": "cd functions && npm run build",
"watchServer": "cd functions && npm run watch",
"testServer": "cd functions && npm run test",
"buildClient": "cd react && npm run build",
"watchClient": "cd react && npm run watch",
"testClient": "cd react && npm run test",
"buildAll": "concurrently \"npm run buildServer\" \"npm run buildClient\"",
"serve": "firebase emulators:start",
"watchAndServe": "concurrently \"cd functions && npm run watch\" \"firebase emulators:start\"",
"deploy": "firebase deploy",
"buildAndDeploy": "concurrently \"npm run buildServer\" \"npm run buildClient\" && firebase deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quaint-Studios/owiki.git"
},
"keywords": [
"wiki",
"free",
"opensource",
"modern"
],
"author": {
"name": "Kristopher Ali",
"email": "kristopher.ali.dev@gmail.com",
"url": "https://makosai.com"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/Quaint-Studios/owiki/issues"
},
"homepage": "https://github.com/Quaint-Studios/owiki#readme",
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"concurrently": "^5.1.0",
"firebase-tools": "^7.13.1",
"ts-jest": "^25.2.1",
"tslint": "^6.0.0",
"typescript": "^3.8.2"
}
}