-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
49 lines (49 loc) · 1.52 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": "dat-medium",
"version": "0.4.0",
"description": "P2P blog platform inspired by Medium for Beaker.",
"author": "Leonardo Kewitz <[email protected]>",
"license": "MIT",
"main": "dist/dat-medium.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js",
"dev": "webpack -w --config webpack.config.dev.js",
"dist": "yarn build && cd dist && dat sync",
"lint": "eslint app/**"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.x",
"babel-eslint": "7.x",
"babel-loader": "6.x",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "6.x",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "6.x",
"babel-preset-stage-0": "6.x",
"babel-runtime": "6.x",
"cache-loader": "^1.2.0",
"css-loader": "^0.28.7",
"dat-node": "^3.5.6",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-preact": "^1.1.6",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-hot-middleware": "^2.20.0"
},
"dependencies": {
"debug": "^3.1.0",
"hyperapp": "^0.16.2",
"markdown-it": "^8.4.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-implicit-figures": "^0.6.0",
"moment": "^2.19.3",
"nanorouter": "^2.1.0"
}
}