-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 4.21 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
{
"name": "stallion",
"description": "Headless CMS built atop Svelte and Sapper.",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "sapper dev -p 3111",
"build": "npx sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"debug": "sapper dev --inspect",
"debug:build": "node --inspect --inspect-brk ./node_modules/sapper/sapper build --legacy",
"dev:postcss:global": "NODE_ENV=development BUNDLE=App postcss src/_client/postcss/global.postcss -o static/css/global.css -m --verbose --config src/_server/build",
"watch:postcss:global": "yarn run -s dev:postcss:global -w",
"dev:svg:if": "if [ $e = \"unlink\" ]; then c=\"\\033[31m\" n=\"${f//src\\/_client\\/svg\\/originals\\/}\" yarn run -s dev:svg:unlink; else c=\"\\033[32m\" yarn run -s dev:svg:compile; fi;",
"dev:svg:info": "echo \"\\033[0;35m---> SVG file event $c$e\\033[0;35m\\033[0m $f\"",
"dev:svg:compile": "yarn run -s dev:svg:info; run-p -s dev:svg:inline dev:svg:src;",
"dev:svg:unlink": "yarn run -s dev:svg:info; rm src/_client/svg/compiled/$n; rm static/svg/$n",
"dev:svg:inline": "svgo -q --config=src/_server/build/svgo-config-inline.yml $f -o src/_client/svg/compiled",
"dev:svg:src": "svgo -q --config=src/_server/build/svgo-config-src.yml $f -o static/svg",
"dev:svg:cleanup": "rm -rf src/_client/svg/compiled; mkdir src/_client/svg/compiled; rm -rf static/svg; mkdir static/svg; for i in $(find src/_client/svg/originals -name '*.svg' -type f); do f=$i c=\"\\033[32m\" yarn run -s dev:svg:compile; done;",
"watch:svg": "SHELL=/bin/bash chokidar 'src/_client/svg/originals/**.svg' -c 'f={path} e={event} run-s -s dev:svg:if' --silent",
"m:up": "node -r esm src/_server/utils/migration-shell",
"m:up:all": "node -r esm src/_server/utils/migration-shell",
"m:down": "node -r esm src/_server/utils/migration-shell",
"m:down:all": "node -r esm src/_server/utils/migration-shell",
"m:create": "node -r esm src/_server/utils/migration-shell",
"m:list": "node -r esm src/_server/utils/migration-shell",
"m:test:up": "node -r esm src/_server/utils/migration-shell",
"m:test:down": "node -r esm src/_server/utils/migration-shell"
},
"dependencies": {
"ansi-colors": "3.2.4",
"arangojs": "6.10.0",
"bcryptjs": "2.4.3",
"body-parser": "1.18.3",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"cross-fetch": "3.0.2",
"esm": "3.2.18",
"express": "4.16.4",
"express-graphql": "0.7.1",
"globby": "9.1.0",
"graphql": "14.1.1",
"graphql-tools": "4.0.4",
"helmet": "3.16.0",
"jsonwebtoken": "8.5.1",
"just-debounce-it": "1.1.0",
"lodash": "4.17.11",
"lodash-es": "4.17.11",
"morgan": "1.9.1",
"passport": "0.4.0",
"passport-local": "1.0.0",
"sirv": "0.2.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"chokidar": "^2.0.4",
"chokidar-cli": "1.2.2",
"dotenv-expand": "5.1.0",
"dotenv-extended": "2.4.0",
"dotenv-parse-variables": "0.2.0",
"livereload": "0.7.0",
"migrate": "1.6.2",
"npm-run-all": "^4.1.5",
"papaparse": "4.6.3",
"postcss": "7.0.14",
"postcss-cli": "6.1.2",
"postcss-custom-media": "7.0.7",
"postcss-easy-import": "3.0.0",
"postcss-functions": "3.0.0",
"postcss-global-nested": "1.2.0",
"postcss-hexrgba": "1.0.1",
"postcss-math": "0.0.10",
"postcss-media-minmax": "4.0.0",
"postcss-nested": "4.1.2",
"postcss-reporter": "6.0.1",
"postcss-scss": "2.0.0",
"postcss-simple-vars": "5.0.2",
"postcss-strip-inline-comments": "0.1.5",
"rollup": "1.6.0",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "2.1.1",
"rollup-plugin-svelte": "^5.0.1",
"rollup-plugin-terser": "^4.0.4",
"sapper": "0.26.0-alpha.12",
"svelte": "3.0.0-beta.19",
"svgo": "1.2.0",
"tinycolor2": "1.4.1"
}
}