-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "solardoc",
"version": "1.0.0-beta.5",
"description": "The SolarDoc project containing all the project code and documentation",
"engines": {
"node": "18 || 20 || 22",
"pnpm": "8"
},
"keywords": [
"solardoc",
"presentation",
"documentation",
"fullstack",
"asciidoc",
"asciidoctor"
],
"repository": {
"type": "git",
"url": "https://github.com/SYP-AHIF-2023-24-25/SolarDoc"
},
"author": "Luna Klatzer, Emma Walchshofer & Lisa Pichler",
"license": "GPL-3.0",
"scripts": {
"build": "pnpm run -r build",
"test": "pnpm run test-no-rebuild",
"pretest": "pnpm run build",
"test-no-rebuild": "nyc mocha ./test/",
"prettier": "pnpm run -r prettier"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@solardoc/asciidoc-renderer": "workspace:~",
"@solardoc/frontend": "workspace:~",
"@solardoc/rest-api": "workspace:~",
"@types/chai": "4.3.0",
"@types/mocha": "10.0.1",
"@types/node": "20.9.3",
"chai": "4.3.6",
"eslint": "8.57.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"ts-mocha": "10.0.0",
"ts-node": "10.9.1",
"tslib": "2.6.2",
"typescript": "5.2.2"
},
"dependencies": {
"reveal.js": "^5.0.2"
}
}