-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"name": "@dosgato/api",
"version": "1.6.7",
"description": "A CMS designed for large institutions with thousands of editors and hundreds of subsites.",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@dosgato/templating": "^1.1.4",
"@fastify/multipart": "^8.0.0",
"@txstate-mws/graphql-server": "^2.2.4",
"archiver": "^7.0.1",
"dataloader-factory": "^4.6.2",
"double-metaphone": "^2.0.1",
"fast-json-patch": "^3.1.0",
"luxon": "^3.0.3",
"mime-types": "^2.1.35",
"mysql2-async": "^2.0.0",
"nanoid": "^5.0.0",
"probe-image-size": "^7.2.3",
"stemmer": "^2.0.1",
"txstate-utils": "^1.9.3",
"type-graphql": "^1.1.1",
"wasmagic": "^1.0.1"
},
"devDependencies": {
"@types/archiver": "^6.0.1",
"@types/luxon": "^3.0.1",
"@types/mime-types": "^2.1.1",
"@types/node": "^20.0.0",
"@types/probe-image-size": "^7.2.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"nodemon": "^3.0.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.0.2"
},
"scripts": {
"prepublishOnly": "npm run build",
"test": "./test.sh",
"build": "rm -rf dist && tsc",
"buildrun": "rm -rf dist && cd testserver && tsc",
"lint": "eslint --ignore-path .gitignore",
"start:dev": "cd testserver; tsc-watch --noClear --onSuccess \"node --enable-source-maps --inspect ../dist/testserver/run.js\"",
"start": "node --no-warnings --enable-source-maps ./dist/testserver/run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/txstate-etc/dosgato"
},
"files": [
"dist"
],
"author": "Nick Wing",
"license": "MIT"
}