-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1017 Bytes
/
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
{
"name": "im-presentation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "mdx-deck deck.mdx",
"build": "mdx-deck build deck.mdx && cp -r assets/ dist",
"deploy": "gh-pages -d dist",
"toc": "cat deck.mdx| grep '^#' | uniq > toc.md",
"lint": "eslint ./*.js components/**/*.js slides/**/*.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/ramda": "github:types/npm-ramda#dist",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-standard-react": "^7.0.2",
"eslint-config-warp": "^3.0.0",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^2.0.1",
"mdx-deck": "^1.10.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"d3": "^5.9.1",
"polished": "^2.3.3",
"ramda": "^0.26.1",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-slider": "^0.11.2",
"recharts": "^1.5.0",
"styled-components": "^4.1.3",
"uuid": "^3.3.2"
}
}