-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.21 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
{
"name": "next-arcgis-app",
"version": "1.0.0",
"description": "An example of how to use the ArcGIS platform in an application built with Next.js.",
"main": "index.js",
"scripts": {
"copy:auth": "cp ./node_modules/@esri/arcgis-rest-auth/dist/umd/auth.umd.min.js ./static/auth.umd.min.js",
"lint": "eslint pages/**/*.js components/**/*.js utils/**/*.js",
"prebuild": "npm run copy:auth",
"build": "next build",
"dev": "next",
"prestart": "npm run copy:auth",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"predeploy": "npm run lint && npm run test",
"deploy": "now"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomwayson/next-arcgis-app.git"
},
"keywords": [
"arcgis",
"esri",
"react",
"next.js"
],
"author": "Tom Wayson <[email protected]> (https://tomwayson.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tomwayson/next-arcgis-app/issues"
},
"homepage": "https://github.com/tomwayson/next-arcgis-app#readme",
"dependencies": {
"@esri/arcgis-rest-auth": "^2.0.0",
"@esri/arcgis-rest-portal": "^2.0.0",
"@esri/arcgis-rest-request": "^2.0.0",
"@zeit/next-css": "^1.0.1",
"bootstrap": "^4.3.1",
"esri-loader": "^2.9.2",
"isomorphic-fetch": "^2.2.1",
"isomorphic-form-data": "^2.0.0",
"next": "^8.1.0",
"nookies": "^2.0.4",
"react": "^16.8.6",
"react-arcgis-hub": "^0.1.0",
"react-dom": "^16.8.6",
"reactstrap": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-dom": "^3.1.3",
"lint-staged": "^8.1.5",
"prettier": "1.17.0",
"react-testing-library": "^6.1.2"
},
"browser": {
"isomorphic-fetch": false,
"isomorphic-form-data": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}