-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "analytics-playground",
"version": "0.0.0",
"repository": "[email protected]:TryGhost/analytics-playground.git",
"author": "Ghost Foundation",
"license": "MIT",
"main": "app.js",
"type": "module",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"ch:client": "docker exec -it analytics-playground-clickhouse-1 clickhouse-client",
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --100 --reporter text --reporter cobertura mocha './test/**/*.test.js'",
"test": "yarn test:unit",
"lint:code": "eslint *.js lib/ --ext .js --cache",
"lint": "yarn lint:code",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version && git push --follow-tags; fi"
},
"files": [
"app.js",
"lib"
],
"devDependencies": {
"c8": "10.1.3",
"eslint": "9.19.0",
"eslint-plugin-ghost": "3.4.0",
"mocha": "11.1.0",
"nodemon": "^3.1.9",
"sinon": "19.0.2"
},
"dependencies": {
"@clickhouse/client": "^1.10.1",
"clickhouse-migrations": "^1.0.4",
"express": "^4.21.2"
}
}