-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "pycamp.es",
"version": "0.1.0",
"description": "Official website of pycamp spain",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/* .cache/",
"start": "parcel serve --no-hmr public/index.njk",
"build-prod": "parcel build public/index.njk --public-url ./",
"create-cname": "echo 'pycamp.es' > dist/CNAME",
"gh-deploy": "gh-pages -d dist",
"deploy": "yarn clean && yarn build-prod && yarn create-cname && yarn gh-deploy"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"gh-pages": "^2.1.1",
"parcel-bundler": "^1.12.4",
"prettier": "^1.18.2",
"sass": "^1.22.12"
},
"dependencies": {
"@layflags/parcel-plugin-metaimage": "^1.2.5",
"bootstrap": "^4.3.1",
"g-sheets-api": "^2.1.2",
"nunjucks": "^3.2.0",
"parcel-plugin-nunjucks": "^2.2.0",
"parcel-plugin-static-files-copy": "^2.6.0",
"yarn": "^1.22.17"
},
"staticFiles": {
"staticPath": ["public/pycampes-2023.ics"]
}
}