-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "layer_config",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"clean": "rm -rf build out",
"export": "BUILD_OPTION=development next export",
"export:prod": "BUILD_OPTION=production next export",
"build": "yarn clean && next build && yarn export",
"build:prod": "yarn clean && next build && yarn export:prod",
"lint": "next lint",
"format": "prettier --write --ignore-path .gitignore",
"check-types": "bash -c tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@loaders.gl/core": "^3.0.9",
"@loaders.gl/gltf": "^3.0.9",
"amazon-cognito-identity-js": "^5.0.6",
"aws-sdk": "^2.970.0",
"axios": "^0.21.1",
"deck.gl": "^8.5.5",
"maplibre-gl": "^1.15.2",
"next": "11.1.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@danmarshall/deckgl-typings": "^4.9.4",
"@types/react": "17.0.17",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.3.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.7",
"typescript": "4.3.5"
},
"lint-staged": {
"*.@(ts|tsx|js|jsx|json)": [
"yarn format",
"yarn check-types"
]
}
}