-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1010 Bytes
/
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
{
"name": "gitcms",
"private": true,
"version": "1.0.0",
"license": "GPL",
"scripts": {
"start:dev": "ts-node-dev -r tsconfig-paths/register src",
"start": "tsc && node -r tsconfig-paths/register dist"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"express": "^4.17.1",
"front-matter": "^4.0.2",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"highlight.js": "^11.2.0",
"js-yaml": "^4.1.0",
"marked": "^2.1.3",
"memoizee": "^0.4.15",
"nodegit": "^0.27.0",
"slug": "^5.1.0",
"validatorjs": "^3.22.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^7.1.4",
"@types/js-yaml": "^4.0.2",
"@types/marked": "^2.0.4",
"@types/memoizee": "^0.4.6",
"@types/node": "^16.4.3",
"@types/nodegit": "^0.27.3",
"@types/slug": "^5.0.2",
"@types/validatorjs": "^3.15.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
}
}