-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
28 lines (28 loc) · 846 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
{
"name": "token-hider",
"version": "1.0.0",
"description": "a token hider using netlify functions",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm-run-all -p -r site:dev lambda:dev",
"build": "npm run site:build && npm run lambda:build",
"site:dev": "node server.js",
"site:build": "parcel build src/site/index.html --public-url ./",
"lambda:dev": "netlify-lambda serve src/lambda",
"lambda:build": "netlify-lambda build src/lambda"
},
"author": "Dennis Padiernos",
"license": "ISC",
"devDependencies": {
"express": "^4.17.1",
"http-proxy-middleware": "^0.19.1",
"netlify-lambda": "^1.4.13",
"parcel-bundler": "^1.12.3"
},
"dependencies": {
"axios": "^0.19.0",
"npm-run-all": "^4.1.5",
"reset.css": "^2.0.2"
}
}