-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 957 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 957 Bytes
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
{
"name": "learn.begin.com",
"version": "1.4.4",
"main": "index.js",
"scripts": {
"deploy": "./scripts/deploy",
"lint:spellcheck": "spellchecker -q -d test/dictionary.txt -f src/md/**/*.md",
"lint:js": "eslint src/http --fix",
"lint": "npm run lint:spellcheck && npm run lint:js",
"build": "eleventy",
"watch": "eleventy --serve",
"start": "npm run build && ARC_STATIC_SPA=false PORT=5555 sandbox",
"start:staging": "ARC_CLOUDFORMATION=LearnBeginStaging NODE_ENV=staging ARC_LOCAL=true AWS_PROFILE=smallwins AWS_REGION=us-west-1 npm run start",
"test": "npm run lint"
},
"author": "Brian LeRoux <b@brian.io>",
"license": "Apache-2.0",
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"@architect/sandbox": "^2.0.1"
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@architect/architect": "^7.0.4",
"eslint": "^6.8.0",
"spellchecker-cli": "^4.0.2"
}
}