-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
{
"name": "static-map-maker",
"version": "0.0.0",
"description": "A static map API helper.",
"author": "Katy DeCorah",
"repository": {
"type": "git",
"url": "git://github.com/katydecorah/staticmapmaker.git"
},
"bugs": {
"url": "https://github.com/katydecorah/staticmapmaker/issues"
},
"license": "MIT",
"scripts": {
"start": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"lint": "eslint . && npm run stylelint",
"stylelint": "stylelint '**/*.scss'",
"pretest": "npm run lint",
"test": "jest",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-perf": "^3.3.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"next-sitemap": "^4.2.3",
"prettier": "^3.7.2",
"sass": "^1.94.2",
"stylelint": "^16.26.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^16.0.0",
"typescript": "^5.9.3"
},
"dependencies": {
"classnames": "^2.5.1",
"next": "^16.0.10",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"url": "^0.11.4"
},
"homepage": "https://github.com/katydecorah/staticmapmaker#readme",
"main": "index.js"
}