-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 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
{
"name": "kvaapagarrot.com",
"version": "1.0.0",
"main": "dist/main.js",
"author": "Stepan Legachev <gitlog@sib.li>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=14"
},
"type": "module",
"scripts": {
"build": "rollup -c",
"build-frontend": "rollup -c rollup.frontend.config.js && rm public/dist/main.js",
"deploy": "gcloud --quiet app deploy app.yaml",
"lint": "eslint '**/*.ts'",
"preinstall": "test -f node_modules.tar.gz && tar -xzf node_modules.tar.gz && rm -f node_modules.tar.gz || true",
"slint": "stylelint '**/*.pcss'",
"start": "node -r source-map-support/register dist/main",
"static": "tsc -p scripts && node -r source-map-support/register scripts/dist/make-static-handlers",
"watch": "NODE_ENV=development rollup -c -w"
},
"dependencies": {
"eta": "1.12.3",
"fast-glob": "3.2.11",
"fastify": "3.27.4",
"fastify-static": "4.6.1",
"mnemonist": "0.39.0",
"point-of-view": "4.16.0",
"source-map-support": "0.5.21",
"tslib": "2.3.1"
},
"devDependencies": {
"@rollup/plugin-run": "2.1.0",
"@rollup/plugin-typescript": "8.3.1",
"@types/js-yaml": "4.0.5",
"@types/node": "16.11.26",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"autoprefixer": "10.4.4",
"chokidar": "3.5.3",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"js-yaml": "4.1.0",
"postcss": "8.4.12",
"postcss-import": "14.1.0",
"precss": "4.0.0",
"prettier": "2.6.0",
"rollup": "2.70.1",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-terser": "7.0.2",
"stylelint": "14.6.0",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-config-standard": "25.0.0",
"stylelint-scss": "4.2.0",
"typescript": "4.6.2"
}
}