-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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": "redez",
"version": "0.0.1",
"description": "The development server for Redez, a graphical tool for editing React apps",
"main": "index.js",
"author": "Coshx Labs",
"license": "MIT",
"engines": {
"node": ">=8.5.0"
},
"keywords": [
"react",
"apollo",
"graphql"
],
"preferGlobal": true,
"bin": "./src/index.js",
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/generator": "^7.3.4",
"@babel/parser": "^7.2.3",
"apollo-server": "^2.3.1",
"chalk": "^2.4.1",
"cli-spinner": "^0.2.8",
"commander": "^2.19.0",
"figlet": "^1.2.1",
"graphql": "^14.0.2",
"inquirer": "^6.2.0",
"js-beautify": "^1.8.9",
"lodash": "^4.17.11",
"ncp": "^2.0.0",
"shelljs": "^0.8.3"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"tern": "^0.23.0"
},
"scripts": {
"test": "jest",
"lint": "./node_modules/.bin/eslint . --fix"
}
}