-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·112 lines (112 loc) · 3.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@cestmaddy/cestmaddy",
"version": "1.2.3",
"description": "A light and powerful CMS, for developers.",
"main": "dist/core/main.js",
"repository": {
"type": "git",
"url": "https://git.chevro.fr/cestmaddy/cestmaddy"
},
"author": "Olivier Cartier <[email protected]>",
"license": "MIT",
"scripts": {
"compile": "rimraf dist && tsc && npm run assets",
"compile:watch": "npm run compile && concurrently -n \"assets,compile\" -c \"bgBlue.bold,bgGreen.bold\" \"npm run assets:watch\" \"tsc -w\"",
"assets": "cpx \"core/**/!(*.ts)\" dist/core && cpx \"cestici/**/!(*.ts)\" dist/cestici",
"assets:watch": "concurrently \"cpx \\\"core/**/!(*.ts)\\\" dist/core -w\" \"cpx \\\"cestici/**/!(*.ts)\\\" dist/cestici -w\"",
"test": "TEST=1 mocha -r ts-node/register tests/**/*.test.ts",
"test:coverage": "nyc npm test",
"test:format": "prettier --write \"**/*.ts\"",
"test:lint": "eslint --fix \"**/*.ts\"",
"start": "node ./dist/core/bin/cli.js start",
"start:watch": "node ./dist/core/bin/cli.js --watch",
"build": "node ./dist/core/bin/cli.js build",
"build:watch": "node ./dist/core/bin/cli.js build --watch",
"prepublishOnly": "npm run compile"
},
"bin": {
"cestmaddy": "dist/core/bin/cli.js"
},
"dependencies": {
"chokidar": "^3.5.3",
"colorette": "^2.0.20",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-interceptor": "^1.2.0",
"get-audio-duration": "^4.0.1",
"glob": "^10.3.4",
"http-proxy-middleware": "^2.0.6",
"imagemagick": "^0.1.3",
"iso-639-1": "^3.0.1",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"luxon": "^3.4.2",
"marked": "^7.0.5",
"marked-highlight": "^2.0.4",
"mime-types": "^2.1.35",
"prismjs": "^1.29.0",
"shelljs": "^0.8.5",
"slugify": "^1.6.6",
"svgo": "^3.0.2",
"typescript": "^5.2.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.5",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/imagemagick": "^0.0.32",
"@types/js-yaml": "^4.0.5",
"@types/luxon": "^3.3.2",
"@types/marked": "^5.0.1",
"@types/mime-types": "^2.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"@types/prismjs": "^1.26.0",
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"chai": "^4.3.8",
"concurrently": "^8.2.1",
"cpx2": "^5.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"memfs": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"include": [
"core/**/*.ts",
"cestici/**/*.ts"
],
"exclude": [
"tests/**/*.ts"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
},
"files": [
"dist/core",
"deployment/default",
"package.json",
"package-lock.json",
"README.md",
"LICENSE",
"tsconfig.json"
],
"types": "dist/core/main.d.ts"
}