-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.29 KB
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
{
"name": "novaql",
"version": "1.0.0",
"description": "GraphQL Schema Visualizer Desktop App",
"main": "main.js",
"scripts": {
"test": "jest --verbose --passWithNoTests",
"prestart": "npm run dev",
"start": "npm run electron",
"electron": "cross-env NODE_ENV=development electron .",
"dev": "cross-env NODE_ENV=development webpack --config webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.prod.js"
},
"keywords": [
"graphql",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/nova-introspection/novaql"
},
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"d3": "^5.16.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"normalize-url": "^5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-transition-group": "^4.4.1",
"redis": "^3.0.2",
"sanitize.css": "^11.0.1",
"styled-components": "^5.1.1",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@testing-library/react": "^10.4.3",
"@testing-library/react-hooks": "^3.3.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"electron": "^9.0.5",
"electron-devtools-installer": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"image-webpack-loader": "^6.0.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
}
}