-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "jamstack-starter",
"siteTitle": "JAMstack starter",
"siteUrl": "https://github.com/aliblackwell/jamstack-starter",
"siteSlogan": "Deploying JAMstack sites with ease",
"version": "0.1.0",
"dependencies": {
"dotenv-webpack": "^1.7.0",
"express": "^4.17.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^5.3.0",
"markdown-it-container": "^3.0.0",
"netlify-cli": "^2.40.0",
"netlify-lambda": "^1.6.3",
"serverless-http": "^2.3.2"
},
"scripts": {
"test": "mocha",
"local-cms": "npx netlify-cms-proxy-server",
"start": "dotenv -- cross-var netlify dev",
"site:serve": "dotenv -- cross-var npx eleventy --serve",
"site:build": "npx eleventy && npm run functions:build",
"functions:build": "netlify-lambda build --config ./webpack.functions.js ./functions",
"lint": "eslint --fix './tests/*.test.js' './website/*.js' './downloads/*.js' './app/*.html'"
},
"directories": {
"tests": "./tests"
},
"devDependencies": {
"@11ty/eleventy": "^0.10.0",
"@11ty/eleventy-navigation": "^0.1.5",
"cross-var": "^1.1.0",
"dotenv-cli": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"mocha": "^7.1.1",
"prettier": "^2.0.2"
}
}