This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"workspaces": [
"website"
],
"dependencies": {
"axios": "^0.18.0",
"cli-table": "^0.3.1",
"common-tags": "^1.8.0",
"cowsay": "^1.3.1",
"escape-html": "^1.0.3",
"firebase-admin": "^6.0.0",
"flow-bin": "^0.83.0",
"format-json": "^1.0.3",
"front-matter": "^3.0.0",
"glob": "^7.1.3",
"icalendar": "^0.7.1",
"indent-string": "^3.2.0",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"pegjs": "^0.10.0",
"qs": "^6.5.2",
"wrap-ansi": "^4.0.0"
},
"private": true,
"scripts": {
"build-json": "node scripts/generate-json.js",
"build": "yarn run build-json && node scripts/generate-svg.js && node scripts/generate-ics.js && (cd website && yarn run build) && cp -Rv website/dist/index.html website/dist/static public && node scripts/generate-event-html-files.js",
"lint": "eslint . --ext .js,.vue",
"netlify": "(curl -o- -L https://yarnpkg.com/install.sh | bash) && ~/.yarn/bin/yarn && yarn run build",
"dev": "cd website && yarn dev",
"test": "jest",
"snapshot": "jest --updateSnapshot"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-vue": "^4.7.1",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"pretty-format": "^23.6.0"
},
"standard": {
"ignore": [
"website/dist",
"public/static"
]
}
}