-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3 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
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
94
95
96
97
98
99
100
101
102
103
{
"name": "data-explorer",
"author": "Kaho Cheung",
"version": "1.3.7",
"title": "Data Explorer",
"main": "pages/index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"heroku-postbuild": "next build",
"flow": "flow",
"test": "node -r dotenv/config ./node_modules/.bin/jest --forceExit --runInBand",
"test:watch": "node -r dotenv/config ./node_modules/.bin/jest --watch",
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --cache",
"deploy-staging": "now --dotenv=.env.staging && now alias staging.dataexplorer.io",
"deploy-production": "now --dotenv=.env.production && now alias dataexplorer.io"
},
"engines": {
"node": "12.x"
},
"license": "ISC",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"apollo-client": "^2.2.7",
"apollo-client-preset": "^1.0.8",
"avsc": "^5.3.0",
"base64-arraybuffer": "^0.1.5",
"csv-express": "^1.2.2",
"dotenv": "^4.0.0",
"downshift": "^2.0.10",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-request": "^1.6.0",
"graphql-tag": "^2.8.0",
"http-proxy-middleware": "^0.17.4",
"isomorphic-unfetch": "^2.0.0",
"material-colors": "^1.2.5",
"memoize-one": "^3.1.1",
"next": "^9.5.1",
"next-redux-wrapper": "^1.3.5",
"next-routes": "^1.4.2",
"normalize.css": "^7.0.0",
"path-match": "^1.2.4",
"prop-types": "^15.5.10",
"react": "^16.13.1",
"react-addons-shallow-compare": "^15.4.2",
"react-apollo": "^2.1.0",
"react-dom": "^16.13.1",
"react-ga": "^2.2.0",
"react-measure": "^1.4.6",
"react-redux": "^5.0.5",
"react-select": "^1.0.0-rc.3",
"react-transition-group": "^2.3.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"styled-jsx-postcss": "^0.2.0",
"url": "^0.11.0",
"victory": "^0.25.6"
},
"cacheDirectories": [
"nextjs/node_modules"
],
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-inline-dotenv": "^1.1.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-inline-environment-variables": "^0.1.1",
"babel-plugin-wrap-in-js": "^1.1.1",
"cssnano": "^3.10.0",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-react-app": "^1.0.5",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"flow-babel-webpack-plugin": "^1.1.0",
"flow-bin": "^0.50.0",
"jest": "^20.0.4",
"jest-css-modules": "^1.1.0",
"lost": "^8.1.0",
"postcss-cssnext": "^3.0.0",
"postcss-easy-import": "^2.1.0",
"postcss-loader": "^2.0.6",
"postcss-mixins": "^6.0.1",
"postcss-reporter": "^4.0.0",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.6.0",
"react-test-renderer": "^15.6.1",
"stylelint": "^7.13.0",
"stylelint-config-lost": "0.0.3",
"stylelint-config-standard": "^16.0.0",
"stylelint-webpack-plugin": "^0.8.0"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/jest-css-modules"
}
}
}