-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.48 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
{
"name": "meteor-react-reactrouter-material-template",
"private": true,
"scripts": {
"start": "meteor run --settings settings-local-dev.json --exclude-archs web.browser.legacy",
"start:e2e": "meteor run --port 3050 --settings settings-local-dev.json",
"lint": "eslint \"imports/**/*.js\"; exit 0",
"cypress:open": "cypress open",
"cypress:headless": "cypress run --config video=false",
"test:e2e": "start-server-and-test start:e2e http://localhost:3050 cypress:open",
"test:e2e:headless": "start-server-and-test start:e2e http://localhost:3050 cypress:headless",
"test:unit": "NODE_ENV=UNIT_TESTING jest",
"test:server": "TEST_CLIENT=0 meteor test --once --driver-package meteortesting:mocha",
"prettier": "prettier --write \"client/**/*.js\" \"imports/**/*.js\" \"server/**/*.js\" \"tests/**/*.js\" --single-quote true",
"clean": "rm -rf node_modules/ package-lock.json && meteor npm i"
},
"pre-commit": [
"lint"
],
"jest": {
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
},
"testPathIgnorePatterns": [
"./tests/e2e/cypress/"
]
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"lodash": "^4.17.20",
"meteor-node-stubs": "^1.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"recompose": "^0.30.0",
"simpl-schema": "^1.9.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@meteorjs/eslint-config-meteor": "^1.0.5",
"@testing-library/react": "^10.4.9",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"canvas": "^2.6.1",
"chai": "^4.2.0",
"chromedriver": "^84.0.1",
"cypress": "^5.0.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-meteor": "^7.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest": "^26.4.2",
"jsdom": "^16.4.0",
"pre-commit": "^1.2.2",
"prettier": "^2.1.1",
"regenerator-runtime": "^0.13.7",
"start-server-and-test": "^1.11.3"
}
}