-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
102 lines (102 loc) · 2.91 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "reason-conf",
"description": "ReasonConf webiste",
"private": true,
"version": "1.0.0",
"dependencies": {
"antwar-interactive": "^0.21.0",
"apollo-client": "^2.4.1",
"bs-date-fns": "^0.1.4",
"eases": "^1.0.8",
"github-slugger": "^1.2.0",
"graphql": "^0.13.2",
"graphql-request": "^1.8.2",
"graphql-tools": "^3.1.1",
"lodash": "^4.17.13",
"lodash.clonedeep": "^4.5.0",
"marked": "^0.3.12",
"normalize.css": "^7.0.0",
"parse-unit": "^1.0.1",
"preact": "^8.3.1",
"preact-compat": "^3.18.4",
"prop-types": "^15.6.2",
"re-classnames": "^0.0.3",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-dom": "^16.4.2",
"react-dropzone": "^4.2.9",
"react-helmet-async": "0.1.0-alpha",
"react-social-icons": "^2.8.1",
"reason-react": "^0.5.3"
},
"keywords": [
"antwar"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"start": "npm run antwar:start",
"prebuild": "npm run bs:clean",
"build": "npm run bs:build && npm run antwar:build",
"antwar:start": "node ./antwar.bootstrap.js develop",
"antwar:build": "NODE_ENV=production node ./antwar.bootstrap.js build",
"bs:build": "export BS_CMT_POST_PROCESS_CMD=\"gentype\" && bsb -make-world",
"bs:start": "export BS_CMT_POST_PROCESS_CMD=\"gentype\" && bsb -make-world -w",
"bs:clean": "bsb -clean-world",
"netlify": "npm run build",
"precommit": "lint-staged",
"export:speakers": "node ./scripts/speakers.js",
"clean": "rm -rf build/",
"debug:build": "node --inspect-brk ./antwar.bootstrap.js build"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@mdx-js/loader": "^0.15.3",
"@mdx-js/mdx": "^0.15.3",
"antwar": "^0.26.0",
"autoprefixer": "^7.2.6",
"babel-loader": "^8.0.0",
"babel-runtime": "^6.26.0",
"bs-platform": "^4.0.5",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"gentype": "^2.14.0",
"husky": "^0.14.3",
"lint-staged": "^8.0.0-beta.2",
"node-sass": "^4.11.0",
"papaparse": "^4.4.0",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.8.2",
"puppeteer": "^1.2.0",
"react-hot-loader": "^4.3.5",
"redirect-webpack-plugin": "^0.1.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^3.12.0",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.4"
},
"lint-staged": {
"*.re": [
"bsrefmt --in-place",
"git add"
],
"*.{js,json,md,css,scss}": [
"prettier --write",
"git add"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"IE 11"
]
}