-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ffconf2019",
"version": "6.0.0",
"description": "",
"main": ".eleventy.js",
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"config": {
"outputFolder": "build"
},
"scripts": {
"build": "NODE_ENV=production next build && next export -o $npm_package_config_outputFolder",
"dev": "next",
"deploy:now": "cp now.json $npm_package_config_outputFolder/ && cd $npm_package_config_outputFolder && now --public",
"deploy:now:full": "npm run export && npm run deploy:now",
"export": "rm -rf $npm_package_config_outputFolder && npm run build && cp public/static/js/sw.js $npm_package_config_outputFolder/ && sed -i -e 's/@VERSION@/'$npm_package_version'/g' $npm_package_config_outputFolder/sw.js && rm -rf $npm_package_config_outputFolder/sw.js-e && cp -r $npm_package_config_outputFolder/_next/static/css $npm_package_config_outputFolder/static/ && cp -r $npm_package_config_outputFolder/static/css/styles.*.chunk.css $npm_package_config_outputFolder/static/css/styles.css && rm -rf $npm_package_config_outputFolder/_next",
"server-static": "node server-static.js",
"storybook": "start-storybook -p 3001 --ci",
"storybook:build": "build-storybook -o .storybook-static",
"storybook:static": "npm run storybook:build && npx http-server .storybook-static"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leftlogic/ffconf2019.git"
},
"keywords": [],
"author": "Remy Sharp (https://remysharp.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/leftlogic/ffconf2019/issues"
},
"homepage": "https://github.com/leftlogic/ffconf2019#readme",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"classnames": "^2.2.6",
"isomorphic-unfetch": "^3.0.0",
"marked": "^0.6.2",
"moment": "^2.24.0",
"next": "^9.1.1",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"raw-loader": "^3.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@mdx-js/loader": "^1.0.20",
"@next/mdx": "^8.1.0",
"@remy/eslint": "^3.2.2",
"@storybook/addon-a11y": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-viewport": "^5.1.9",
"@storybook/react": "^5.1.9",
"babel-eslint": "^10.0.1",
"babel-plugin-react-require": "^3.1.1",
"babel-plugin-rewire": "^1.2.0",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.10.3",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"express": "^4.17.1",
"prettier": "^1.18.2",
"prettier-eslint": "^8.8.2"
}
}