-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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": "webpage-2020",
"version": "1.0.0",
"description": "Webpage 2020",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node devServer.js",
"start:server": "netlify-lambda serve functions",
"build": "npm run build:app && npm run build:functions",
"build:app": "parcel build public/index.html",
"build:functions": "netlify-lambda build functions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elm-oslo/webpage-2020.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/elm-oslo/webpage-2020/issues"
},
"homepage": "https://github.com/elm-oslo/webpage-2020#readme",
"dependencies": {
"google-spreadsheet": "^2.0.8",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.2.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"elm": "^0.19.1-3",
"elm-hot": "^1.1.4",
"netlify-lambda": "^1.6.3",
"node-elm-compiler": "^5.0.4",
"parcel-proxy-server": "^1.1.0"
},
"staticFiles": {
"staticPath": "public"
}
}