-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.47 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.47 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
{
"name": "leaonline-backend",
"private": true,
"scripts": {
"start": "meteor run",
"test:once": "meteor test --once --driver-package meteortesting:mocha",
"test:app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"lint:code": "standard | snazzy",
"lint:code-fix": "standard --fix | snazzy",
"lint:style": "stylelint \"**/*.scss\"",
"lint:style-fix": "stylelint --fix \"**/*.scss\"",
"lint:markdown": "markdownlint \"**/*.md\" --config ./.markdownlint.json",
"lint:markdown-fix": "markdownlint --fix \"**/*.md\" --config ./.markdownlint.json",
"build:notes-tree": "markdown-notes-tree && npm run lint:markdown-fix",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"@fortawesome/fontawesome-free": "^5.15.4",
"@shopify/draggable": "^1.0.0-beta.12",
"bootstrap": "^4.6.1",
"dely": "^1.0.2",
"easy-speech": "^2.1.0",
"fast-shuffle": "^4.5.1",
"highlight.js": "^10.7.3",
"jquery": "^3.6.0",
"lozad": "^1.16.0",
"marked": "^5.1.0",
"meteor-node-stubs": "^1.1.0",
"popper.js": "^1.16.1",
"select2": "^4.0.6",
"simpl-schema": "^1.12.0",
"sortablejs": "^1.14.0"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"snazzy": "^9.0.0",
"standard": "^17.0.0"
}
}