forked from SparkEdUAB/sparked-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "SparkEd",
"private": false,
"scripts": {
"start": "meteor",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"core-js": "^2.4.1",
"fs-extra": "^4.0.3",
"gridfs-stream": "^1.1.1",
"lodash": "^4.17.10",
"materialize-css": "^1.0.0-rc.2",
"meteor-node-stubs": "^0.3.2",
"mmmagic": "^0.5.0",
"prop-types": "^15.6.0",
"react": "^16.7.0",
"react-color": "^2.14.1",
"react-countup": "^4.0.0",
"react-dom": "^16.7.0",
"react-mounter": "^1.2.0",
"react-paginate": "^5.2.4",
"react-player": "^1.6.6",
"request": "^2.75.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": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^8.2.6",
"babel-jest": "^24.1.0",
"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.0.3",
"eslint-plugin-meteor": "^4.1.4",
"eslint-plugin-react": "^7.6.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"settings": {
"import/resolver": "meteor"
}
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
}
}