-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "enhance.dev",
"version": "1.22.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": "^8.1.6",
"@architect/plugin-bundles": "^3.2.0",
"@begin/data": "^5.0.5",
"@begin/imprint": "github:beginner-corp/imprint#v4.1.0",
"@docsearch/js": "^3.3.0",
"@enhance/arc-plugin-enhance": "^11.0.1",
"@enhance/arc-plugin-styles": "^5.0.6",
"@mux/mux-player": "^2.7.0",
"arcdown": "^2.3.0",
"markdown-it-arc-static-img": "^2.1.0",
"qrcode": "^1.5.3"
},
"devDependencies": {
"@architect/architect": "^11.0.13",
"@architect/eslint-config": "^2.0.1",
"@architect/sandbox": "^6.0.5",
"@architect/spellcheck-dictionary": "github:architect/spellcheck-dictionary#v0.1.7",
"@enhance/types": "^0.7.0",
"eslint": "^8.30.0",
"spellchecker-cli": "^6.2.0",
"tap-arc": "^1.2.2",
"tape": "^5.7.5",
"tiny-json-http": "^7.5.1"
},
"eslintConfig": {
"extends": [
"@architect/eslint-config"
],
"rules": {
"filenames/match-regex": "off"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"es2021": true,
"browser": true,
"node": true
}
}
}