forked from netlify-labs/netlify-functions-headless-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 761 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
{
"name": "headless-chrome-netlify-functions",
"version": "0.1.0",
"private": true,
"dependencies": {
"analytics": "^0.3.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1"
},
"scripts": {
"start": "react-scripts start",
"prezip": "rm -rf functions-build && mkdir functions-build",
"zip": "cd functions/chrome && npm install && chmod -R 777 node_modules && zip -r chrome.zip *",
"postzip": "mv functions/chrome/chrome.zip functions-build",
"prebuild": "npm run zip",
"build": "react-scripts build",
"docs": "md-magic --path '**/*.md' --ignore 'node_modules'"
},
"main": "index.js",
"devDependencies": {
"markdown-magic": "^1.0.0"
},
"author": "",
"license": "MIT"
}