This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "dynamic-learning",
"private": true,
"scripts": {
"start": "meteor",
"test": "TEST_BROWSER_DRIVER=puppeteer meteor test --once --driver-package meteortesting:mocha",
"full-test": "TEST_WATCH=1 meteor test --driver-package meteortesting:mocha",
"lint": "eslint .",
"coverage:watch": "BABEL_ENV=COVERAGE COVERAGE=1 COVERAGE_VERBOSE=1 COVERAGE_APP_FOLDER=$PWD/ TEST_WATCH=1 meteor test --driver-package meteortesting:mocha"
},
"dependencies": {
"@babel/runtime": "^7.5.1",
"bcrypt": "^3.0.6",
"fabric": "^2.7.0",
"history": "^4.9.0",
"meteor-node-stubs": "^0.3.3",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-addons-pure-render-mixin": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-color": "^2.17.3",
"react-dom": "^16.8.6",
"react-icons-kit": "^1.3.1",
"react-meteor-data": "^0.2.11",
"react-rnd": "^10.0.0",
"react-router-dom": "^4.3.1",
"react-sortable-hoc": "^1.9.1",
"react-sortable-tree": "^2.6.2",
"react-sortable-tree-theme-minimal": "0.0.14",
"react-tagsinput": "^3.19.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.81.3",
"simpl-schema": "^1.5.5"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-meteor": "^5.1.0",
"eslint-plugin-react": "^7.14.2",
"mocha": "^6.1.4",
"puppeteer": "^1.20.0"
},
"engines": {
"node": "8.11.1"
},
"eslintConfig": {
"extends": "@meteorjs/eslint-config-meteor"
},
"babel": {
"env": {
"COVERAGE": {
"plugins": [
"istanbul"
]
}
}
}
}