-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 948 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
{
"name": "speedtracker-netlify",
"version": "1.0.0",
"main": "output/index.html",
"scripts": {
"build": "npm run build:dashboard && npm run build:config && npm run build:functions",
"build:config": "cp speedtracker.config.js output/speedtracker.config.js",
"build:dashboard": "mkdir -p output && cp node_modules/@speedtracker/dashboard/bundle.js output && cp node_modules/@speedtracker/dashboard/index.html output",
"build:functions": "netlify-lambda build functions-src/",
"lint": "standard --verbose | snazzy",
"watch": "netlify-lambda serve functions-src/"
},
"repository": "speedtracker/netlify-demo",
"author": "Eduardo Bouças <[email protected]> (https://eduardoboucas.com)",
"license": "MIT",
"devDependencies": {
"netlify-lambda": "^1.1.1"
},
"dependencies": {
"@speedtracker/api": "^0.17.0",
"@speedtracker/dashboard": "^0.10.0",
"@speedtracker/mongodb": "^0.2.0"
}
}