-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.78 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
56
{
"name": "jsconfeu-2019-schedule",
"version": "1.1.9",
"description": "JSConf EU 2019 schedule",
"main": "index.js",
"private": true,
"config": {
"outputFolder": "out",
"inputUrl": "https://2019.jsconf.eu/schedule/timetable.html",
"inputUrlBase": "https://2019.jsconf.eu",
"nowName": "jsconfeu-2019-schedule",
"nowAlias": "2019-jsconfeu-schedule",
"nameLong": "JSConf EU 2019 schedule",
"nameShort": "jsconfeu19",
"days": [
"2019-05-18",
"2019-06-02"
],
"offlineMode": true
},
"scripts": {
"dev": "node server-dev.js",
"export": "NODE_ENV=production next build && next export -o $npm_package_config_outputFolder",
"beautify": "html-beautify $npm_package_config_outputFolder/index.html -r -T style -T script",
"static": "node server-static.js",
"now-deploy": "cd $npm_package_config_outputFolder && now",
"now-alias": "now alias https://$npm_package_config_nowName.electric-g.now.sh $npm_package_config_nowAlias",
"json": "node export.js json",
"build": "node export.js build",
"deploy": "node export.js deploy",
"patch": "npm --no-git-tag-version version patch",
"all": "node export.js all"
},
"author": "Giulia Alfonsi",
"homepage": "https://github.com/electricg/jsconfeu-2019-schedule",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"prettier": "^1.17.1",
"prettier-eslint": "^8.8.2"
},
"dependencies": {
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.0",
"js-beautify": "^1.10.0",
"next": "^8.1.0",
"raw-loader": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}