forked from enhance-dev/enhance.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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": "enhance.dev",
"version": "1.19.1",
"description": "Enhance landing page, docs, and tutorial",
"type": "module",
"scripts": {
"start": "arc sandbox",
"lint": "eslint 'app/**/**.*js' --fix",
"spellcheck": "npx spellchecker --config ./scripts/spellcheckerrc.json",
"tape": "tape 'test/**/*-test.mjs' | tap-arc",
"test": "npm run spellcheck && npm run lint && npm run tape"
},
"dependencies": {
"@architect/functions": "^7.0.0",
"@begin/data": "^4.0.2",
"@begin/imprint": "github:beginner-corp/imprint#v1.1.0",
"@docsearch/js": "^3.3.0",
"@enhance/arc-plugin-enhance": "^9.1.2",
"@enhance/arc-plugin-styles": "^5.0.0",
"@mux/mux-player": "^1.5.1",
"arcdown": "^2.2.1",
"markdown-it-arc-static-img": "^2.1.0",
"qrcode": "^1.5.1"
},
"devDependencies": {
"@architect/architect": "^10.16.1",
"@architect/eslint-config": "^2.0.1",
"@architect/sandbox": "^5.9.2",
"@architect/spellcheck-dictionary": "github:architect/spellcheck-dictionary#v0.1.7",
"@enhance/types": "^0.6.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.1",
"prettier-eslint": "^15.0.1",
"spellchecker-cli": "^6.1.0",
"tap-arc": "^0.3.5",
"tape": "^5.6.1",
"tiny-json-http": "^7.4.2"
},
"eslintConfig": {
"extends": [
"@architect/eslint-config",
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "es5",
"bracketSameLine": true
}
],
"filenames/match-regex": "off"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"es2021": true,
"browser": true,
"node": true
}
}
}