-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 995 Bytes
/
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
{
"name": "normalflow",
"version": "1.2.0",
"scripts": {
"metadata": "node ./src/plugins/create-post-metadata.js",
"rss": "node ./src/plugins/create-rss-feed.js",
"start": "npx enhance dev",
"lint": "eslint ./app/**/*.mjs --fix",
"test": "echo 'No tests defined, good luck friend!' && exit 0"
},
"dependencies": {
"@architect/architect": "^11.1.0",
"@enhance/arc-plugin-enhance": "^11.0.4",
"@enhance/arc-plugin-styles": "^5.0.5",
"@enhance/image": "^0.0.0-alpha.4",
"arcdown": "^2.3.0",
"feed": "^4.2.2",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@enhance/cli": "^1.0.7",
"@enhance/types": "^0.5.0",
"eslint": "^8.30.0"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
]
},
"ignorePatterns": [],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2022
}
}
}