forked from code4recovery/tsml-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "tsml-ui",
"version": "1.0.0",
"private": false,
"license": "MIT",
"scripts": {
"dev": "mix",
"hot": "mix watch --hot",
"postdev": "rm -f mix-manifest.json",
"postprod": "rm -f mix-manifest.json",
"prod": "mix --production",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000"
},
"devDependencies": {
"@babel/preset-react": "^7.13.13",
"laravel-mix": "^6.0.19",
"postcss": "^8.1",
"sass": "^1.32.13",
"sass-loader": "^11.0.1"
},
"dependencies": {
"bootstrap": "^5.0.1",
"classnames": "^2.3.1",
"deepmerge": "^4.2.2",
"moment-timezone": "^0.5.33",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-infinite-scroller": "^1.2.4",
"react-map-gl": "^6.1.16",
"viewport-mercator-project": "^7.0.3"
},
"exports": {
".": {
"browser": {
"default": "./src/components/TsmlUI.jsx"
}
},
"./*": "./*"
},
"babel": {
"presets": [
"@babel/preset-react"
]
}
}