-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "@architect/arc.codes",
"version": "3.13.9",
"repository": {
"type": "git",
"url": "https://github.com/architect/arc.codes"
},
"license": "Apache-2.0",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"spellcheck": "npx spellchecker --config ./scripts/spellcheckerrc.json",
"link-checker": "node ./test/link-checker.mjs | tap-arc",
"lint": "npx eslint src --fix",
"start": "npx arc sandbox",
"tape": "npx tape 'test/**/*-test.mjs' | tap-arc",
"test": "npm run spellcheck && npm run lint && npm run tape"
},
"dependencies": {
"@architect/asap": "^7.0.10",
"@architect/functions": "^8.1.6",
"@architect/inventory": "^4.0.5",
"@architect/package": "^9.0.3",
"@architect/plugin-node-prune": "^2.0.2",
"@enhance/arc-plugin-styles": "^5.0.6",
"@enhance/enhance-style-transform": "^0.1.2",
"@enhance/ssr": "^4.0.3",
"arcdown": "^2.3.0",
"markdown-it-arc-static-img": "^2.1.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"@architect/architect": "^11.1.0",
"@architect/eslint-config": "^2.1.2",
"@architect/spellcheck-dictionary": "github:architect/spellcheck-dictionary",
"eslint": "^8.57.0",
"linkinator": "^6.1.1",
"spellchecker-cli": "^6.2.0",
"tap-arc": "^1.3.2",
"tape": "^5.8.1",
"tiny-json-http": "^7.5.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": "2022",
"sourceType": "module"
},
"extends": "@architect/eslint-config",
"rules": {
"import/no-commonjs": "error",
"import/extensions": [
"error",
"ignorePackages"
]
}
}
}