-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "mapapp",
"private": true,
"scripts": {
"start": "npm run meteor",
"meteor": "meteor --exclude-archs \"web.browser.legacy, web.cordova\"",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.7.6",
"@here/harp-map-controls": "^0.13.1",
"@here/harp-map-theme": "^0.13.0",
"@here/harp-mapview": "^0.13.1",
"@here/harp-omv-datasource": "^0.13.1",
"jquery": "^3.4.1",
"meteor-node-stubs": "^1.0.0",
"moment": "^2.29.1",
"solid-js": "^1.3.6",
"solid-styled-jsx": "^0.27.1",
"styled-jsx": "^3.4.4",
"three": "^0.112.1"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
},
"devDependencies": {
"@types/meteor": "^2.0.4",
"@types/mocha": "^9.1.0",
"babel-preset-solid": "^1.3.6",
"typescript": "^4.6.3"
}
}