-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "enhance.dev",
"version": "1.21.0",
"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#v4.0.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.3.0",
"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",
"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"
],
"rules": {
"filenames/match-regex": "off"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"es2021": true,
"browser": true,
"node": true
}
}
}