-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"scripts": {
"start": "sandbox",
"refresh": "rm -rf package-lock.json node_modules && npm install",
"lint": "eslint ./app/**/*.mjs --fix",
"build:css": "node-sass --omit-source-map-url bulma-custom/underdark.scss public/bulma.css",
"watch:css": "npm run build:css -- --watch"
},
"devDependencies": {
"@architect/architect": "^10.6.0",
"@architect/sandbox": "latest",
"@types/bluebird": "^3.5.36",
"@types/glob": "^8.0.0",
"@types/marked": "^4.0.7",
"aws-sdk": "^2.1215.0",
"bulma": "^0.9.4",
"eslint": "latest",
"mocha": "^10.0.0",
"node-sass": "^7.0.3",
"should": "^13.2.3"
},
"dependencies": {
"@begin/validator": "^1.0.1",
"@enhance/arc-plugin-enhance": "latest",
"bluebird": "^3.7.2",
"front-matter": "^4.0.2",
"glob": "^8.0.3",
"lru-cache": "^7.14.0",
"marked": "^4.1.0",
"xmlbuilder2": "^3.0.2"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
]
},
"ignorePatterns": [],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2022
}
}
}