This repository has been archived by the owner on Oct 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
{
"name": "mainframe",
"description": "An unofficial proof-of-concept for the SCP-Wiki.",
"author": "Monkatraz",
"version": "2.0.0",
"license": "MIT",
"private": "true",
"scripts": {
"dev": "snowpack dev",
"build": "snowpack build",
"packages": "(cd packages/cm6 && npm i) && (cd ../tarnation && npm i)",
"lint:sl": "stylelint src/**/*.styl --custom-syntax stylelint-plugin-stylus/custom-syntax || echo 'done'",
"lint:es": "eslint src/ || echo 'done'",
"test": "echo \"Mainframe does not currently include a test runner.\""
},
"browserslist": [
"> 2%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not op_mini all",
"not ie > 0"
],
"workspaces": [
"packages/**"
],
"module": "esnext",
"dependencies": {
"@iconify/iconify": "^2.0.0-rc.6",
"@popperjs/core": "^2.9.2",
"animejs": "^3.2.1",
"dompurify": "^2.2.7",
"faunadb": "^4.1.3",
"idb": "^6.0.0",
"js-yaml": "^4.0.0",
"katex": "^0.12.0",
"markdown-it": "^12.0.4",
"morphdom": "^2.6.1",
"threads": "^1.6.3",
"tippy.js": "^6.3.1"
},
"devDependencies": {
"@snowpack/plugin-build-script": "^2.1.0",
"@snowpack/plugin-postcss": "^1.2.2",
"@snowpack/plugin-run-script": "^2.3.0",
"@snowpack/plugin-svelte": "^3.6.1",
"autoprefixer": "^10.2.5",
"css-mquery-packer": "^1.2.4",
"esbuild": "^0.11.7",
"postcss": "^8.2.9",
"postcss-cli": "^8.3.1",
"punycode": "^2.1.1",
"snowpack": "^3.2.2",
"snowpack-plugin-stylus": "^1.0.6",
"sort-css-media-queries": "^1.5.4",
"stylus": "^0.54.8",
"svelte": "^3.37.0",
"svelte-preprocess": "^4.7.0",
"tinro": "^0.6.1",
"typescript": "4.3.0-beta"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.24.0",
"eslint-plugin-clean-regex": "^0.5.1",
"eslint-plugin-svelte3": "^3.1.2",
"stylelint": "^13.12.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-order": "^4.1.0",
"stylelint-plugin-stylus": "^0.10.0"
}
}