-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.68 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.68 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "grommet-dashboard",
"version": "1.1.0",
"type": "module",
"engines": {
"node": ">=12.0",
"npm": ">=6.0.1"
},
"keywords": [
"grommet",
"grommet-dashboard",
"admin-dashboard",
"react",
"react-dashboard",
"nextjs",
"nextjs-dashboard"
],
"scripts": {
"dev": "PORT=8333 node --experimental-modules server/server.js ",
"alias": "NODE_ENV=alias PORT=8333 node --experimental-modules server/server.js ",
"build": "NODE_ENV=production next build",
"check": "./node_modules/.bin/eslint .",
"heroku-postbuild": "npm run build",
"analyze": "ANALYZE_BUILD=true npm run build",
"start": "NODE_ENV=production node --experimental-modules server/server.js",
"start-server": "NODE_ENV=production PORT=8333 node --experimental-modules server/server.js"
},
"dependencies": {
"@octokit/rest": "^15.11.1",
"apollo-client-preset": "^1.0.8",
"babel-plugin-styled-components": "^1.7.1",
"chalk": "^2.4.1",
"chart.js": "^2.7.2",
"compression": "^1.7.3",
"dotenv": "^5.0.1",
"dotenv-webpack": "^1.5.5",
"express": "^4.16.3",
"express-request-proxy": "^2.2.2",
"faker": "^4.1.0",
"fs": "0.0.1-security",
"git-url-parse": "^10.0.1",
"google-map-react": "^1.0.6",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"grommet": "^2.7.3",
"grommet-controls": "^1.1.20",
"grommet-icons": "^4.2.0",
"grommet-theme-aruba": "latest",
"grommet-theme-dxc": "latest",
"grommet-theme-hp": "latest",
"grommet-theme-hpe": "latest",
"grommet-theme-v1": "latest",
"ip": "^1.1.5",
"isomorphic-unfetch": "^2.1.1",
"lru-cache": "^4.1.3",
"moment": "^2.22.2",
"next": "^8.0.3",
"next-routes": "^1.4.2",
"next-transpile-modules": "^2.2.0",
"npm": "^5.7.1",
"numeral": "^2.0.6",
"react": "^16.7.0",
"react-apollo": "^2.1.11",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.7.0",
"react-ga": "^2.5.3",
"react-live": "^1.11.0",
"react-markdown": "^3.6.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"styled-components": "^4.1.3",
"url-search-params": "^0.10.0",
"webpack-bundle-analyzer": "^3.3.2"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-transform-imports": "^1.5.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-parallel": "^0.3.2",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"check"
],
"license": "ISC"
}