-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
71
72
73
74
75
76
77
78
79
{
"name": "interQ2",
"private": true,
"engine": {
"node": "8.16.1"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"start": "meteor run",
"test": "npm run lint && ./node_modules/.bin/jest",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"test-watch": "./node_modules/.bin/jest --watchAll",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/runtime": "^7.3.4",
"babel-eslint": "^10.0.2",
"bcrypt": "^3.0.6",
"browserslist": "^4.7.0",
"caniuse-lite": "^1.0.30000989",
"clipboard": "^2.0.4",
"cloudinary-core": "^2.7.3",
"cloudinary-react": "^1.1.4",
"css-reset-and-normalize": "^2.1.0",
"eslint-plugin-meteor": "^6.0.0",
"filestack-react": "^3.1.0",
"i18next": "^17.0.10",
"lodash": "^4.17.15",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"postmark": "^2.2.9",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-device-detect": "^1.7.5",
"react-dom": "^16.8.6",
"react-i18next": "^10.11.5",
"react-phone-number-input": "^2.3.21",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-video-recorder": "^3.10.0",
"react-window-size": "^1.2.2",
"rmwc": "^5.6.0",
"simpl-schema": "^1.5.5",
"styled-components": "^4.3.2"
},
"meteor": {
"mainModule": {
"client": "client/main.jsx",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.3.4",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"babel-preset-meteor": "^7.5.5",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"esm": "^3.2.25",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-raw-loader": "^1.0.1",
"meteor-babel": "^7.5.7",
"meteor-node-stubs": "^0.4.1",
"prettier": "^1.18.2"
}
}