-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
54 lines (54 loc) · 1.51 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
{
"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": "next lint && npm run stylelint",
"stylelint": "stylelint '**/*.scss'",
"pretest": "npm run lint",
"test": "jest",
"format": "prettier --write ."
},
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-perf": "^3.3.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-sitemap": "^4.2.3",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"stylelint": "^16.7.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5.5.3"
},
"dependencies": {
"classnames": "^2.5.1",
"next": "^14.2.20",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"url": "^0.11.3"
},
"homepage": "https://github.com/katydecorah/staticmapmaker#readme",
"main": "index.js"
}