-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
36 lines (36 loc) · 900 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
{
"name": "jsonbrowse",
"version": "1.0.0",
"description": "Browse JSON",
"main": "index.js",
"repository": "https://github.com/jorilallo/jsonbrowse.git",
"author": "Jori Lallo",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint **/*.js",
"deploy": "now && now alias"
},
"now": {
"alias": "jsonbrowse.com"
},
"dependencies": {
"isomorphic-fetch": "2.2.1",
"lodash": "4.17.2",
"next": "2.0.0-beta.12",
"react-copy-to-clipboard": "4.2.3",
"react-ga": "^2.1.2",
"reflexbox": "2.2.3",
"stringify-object-with-one-liners": "1.0.0",
"styled-components": "1.1.2"
},
"devDependencies": {
"eslint": "3.11.1",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.8.0"
}
}