This repository has been archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.77 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
62
63
64
65
66
67
68
69
70
{
"name": "SparkEd",
"private": true,
"scripts": {
"start": "meteor",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"axios": "^0.19.0",
"babel-runtime": "^6.26.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"core-js": "^3.1.3",
"fs-extra": "^8.0.1",
"gridfs-stream": "^1.1.1",
"merge": "^1.2.1",
"meteor-node-stubs": "^0.4.1",
"mmmagic": "^0.5.3",
"prop-types": "^15.6.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-mounter": "^1.2.0",
"react-paginate": "^6.3.0",
"request": "^2.88.0",
"simpl-schema": "^1.4.2"
},
"version": "1.0.0",
"description": "Software for organizing and presenting educational and training content for delivery on most platforms.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/SparkEdUAB/SparkEd.git"
},
"author": "SparkEd Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/SparkEdUAB/SparkEd/issues"
},
"homepage": "https://github.com/SparkEdUAB/SparkEd#readme",
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^10.0.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-meteor": "^5.1.0",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.4.3"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"settings": {
"import/resolver": "meteor"
}
}
}