-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·98 lines (98 loc) · 2.86 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
{
"name": "jarvis",
"version": "0.0.1",
"scripts": {
"dev": "NODE_ENV=development node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"export": "next build && next export",
"deploy:github": "NODE_ENV=production DEPLOY_ENV=github yarn export && touch out/.nojekyll && gh-pages -t -d out",
"clean": "rm -rf node_modules/.cache && rm -rf node_modules/gh-pages/.cache"
},
"dependencies": {
"@deck.gl/aggregation-layers": "^7.1.7",
"@deck.gl/core": "^7.0.5",
"@deck.gl/geo-layers": "^7.0.5",
"@deck.gl/layers": "^7.0.5",
"@deck.gl/mesh-layers": "^7.0.5",
"@deck.gl/react": "^7.0.5",
"@loaders.gl/core": "^1.1.6",
"@luma.gl/addons": "^7.0.1",
"@luma.gl/core": "^7.0.1",
"@zeit/next-css": "^1.0.1",
"axios": "^0.19.0",
"cogo-toast": "^3.1.0",
"d3-color": "^1.2.8",
"d3-geo": "^1.11.6",
"d3-interpolate": "^1.3.2",
"d3-scale": "^3.0.0",
"d3-timer": "^1.0.9",
"dayjs": "^1.8.15",
"deck.gl": "^7.1.7",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"lodash": "^4.17.14",
"luma.gl": "^7.1.1",
"next": "^9.0.5",
"next-i18next": "^0.50.0",
"react": "^16.9.0",
"react-animate-on-scroll": "^2.1.5",
"react-dom": "^16.9.0",
"react-icons": "^3.7.0",
"react-map-gl": "^5.0.4",
"react-spring": "^8.0.27",
"recharts": "^1.6.2",
"siriwave": "^1.2.4",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@danmarshall/deckgl-typings": "^2.2.1",
"@next/bundle-analyzer": "8.1.1-canary.64",
"@types/d3-geo": "^1.11.1",
"@types/d3-interpolate": "^1.3.1",
"@types/d3-timer": "^1.0.9",
"@types/faker": "^4.1.5",
"@types/lodash": "^4.14.136",
"@types/next": "^8.0.6",
"@types/react": "^16.9.2",
"@types/react-animate-on-scroll": "^2.1.2",
"@types/react-map-gl": "^5.0.0",
"@types/recharts": "^1.1.19",
"@types/styled-components": "^4.1.18",
"@types/styled-jsx": "^2.2.8",
"@visuallylab/tslint-config-frontend": "^1.0.11",
"babel-plugin-import": "^1.12.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.4",
"compression": "^1.7.3",
"dotenv-webpack": "^1.5.7",
"geolib": "^3.0.4",
"gh-pages": "^2.0.1",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"tslint": "^5.19.0",
"tslint-react-hooks": "^2.2.1",
"typescript": "^3.5.3",
"typescript-tslint-plugin": "^0.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all"
},
"license": "ISC"
}