-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "scottish-lidar-web",
"version": "1.0.0",
"private": true,
"scripts": {
"tsc": "tsc --noEmit",
"pug": "pug --pretty ./pages",
"dev": "parcel ./pages/*.* --port 4000",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ext .ts,.tsx",
"clean": "rimraf .cache ./dist",
"build": "yarn clean && yarn tsc && yarn lint && yarn test && parcel build ./pages/*.*"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "6.4.2",
"@types/jest": "^29.5.3",
"@types/leaflet": "1.9.3",
"@types/lodash": "4.14.138",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"jest": "29.6.2",
"parcel-bundler": "1.12.4",
"pug": "^3.0.2",
"pug-cli": "1.0.0-alpha6",
"rimraf": "5.0.1",
"sass": "^1.22.12",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "6.4.2",
"@popperjs/core": "^2.11.8",
"autoprefixer": "^9.6.1",
"bootstrap": "^5.3.1",
"framer-motion": "2.9.5",
"handlebars": "^4.7.8",
"jquery": "3.7.0",
"leaflet": "1.9.4",
"leaflet-editable": "1.2.0",
"lodash": "4.17.21",
"nodelist-foreach-polyfill": "1.2.0",
"postcss": "^8.1.0",
"react": "18.2.0",
"react-bootstrap": "^2.8.0",
"react-copy-to-clipboard": "5.0.1",
"react-dom": "18.2.0",
"react-leaflet": "4.2.1",
"react-redux": "8.1.2",
"react-router-dom": "^5.3.4",
"redux": "4.2.1",
"ts-polyfill": "3.8.2",
"whatwg-fetch": "3.6.17"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
}
}