-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
55
56
57
58
59
60
{
"name": "svelte-app",
"private": true,
"scripts": {
"svelte-check": "svelte-check",
"start": "meteor --settings settings-local.json --port 5000",
"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.15.4",
"@fortawesome/fontawesome-free": "^5.15.3",
"@popperjs/core": "^2.6.0",
"@types/meteor": "^1.4.84",
"array-query": "^0.1.2",
"aws-sdk": "^2.909.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bootstrap": "^5.1.3",
"chai": "^4.3.4",
"meteor-node-stubs": "^1.1.0",
"moment": "^2.29.1",
"notiflix": "^3.2.2",
"popper.js": "^1.16.1",
"simpl-schema": "^1.10.2",
"slugify": "^1.4.6",
"svelte": "^3.46.4",
"sweetalert2": "^11.1.10"
},
"meteor": {
"mainModule": {
"client": "client/main.js"
},
"testModule": "tests/main.js",
"nodeModules": {
"recompile": {
"svelte": [
"legacy"
]
}
}
},
"devDependencies": {
"@types/bootstrap": "^5.1.9",
"eslint-plugin-svelte3": "^3.4.0",
"svelte-check": "^2.4.3",
"svelte-preprocess": "^4.10.2",
"tinro": "^0.6.12",
"typescript": "^4.5.5"
},
"svelte:compiler": {
"extensions": [
"svelte",
"html"
],
"hydratable": true,
"css": false
}
}