-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "reason-conf-2018",
"description": "ReasonConf 2018",
"version": "1.0.0",
"dependencies": {
"bs-date-fns": "^0.1.4",
"eases": "^1.0.8",
"github-slugger": "^1.2.0",
"lodash": "^4.17.10",
"lodash.clonedeep": "^4.5.0",
"marked": "^0.3.12",
"normalize.css": "^7.0.0",
"parse-unit": "^1.0.1",
"re-classnames": "^0.0.3",
"react-dropzone": "^4.2.9",
"react-social-icons": "^2.8.1",
"reason-react": "^0.4.1"
},
"keywords": ["gatsby"],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"re:build": "bsb -make-world",
"re:start": "bsb -make-world -w",
"re:clean": "bsb -clean-world",
"precommit": "lint-staged",
"export:speakers": "node ./scripts/speakers.js"
},
"devDependencies": {
"autoprefixer": "^7.2.4",
"bs-platform": "^3.0.0",
"gatsby": "^1.9.128",
"gatsby-link": "^1.6.28",
"gatsby-plugin-postcss-sass": "^1.0.15",
"gatsby-plugin-react-helmet": "^1.0.8",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"papaparse": "^4.4.0",
"prettier": "^1.8.2",
"puppeteer": "^1.2.0"
},
"lint-staged": {
"*.re": ["bsrefmt --in-place", "git add"],
"*.{js,json,md,css,scss}": ["prettier --write", "git add"]
},
"browserslist": ["> 1%", "last 2 versions", "IE 11"]
}