This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.06 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
80
81
82
83
{
"name": "test-meteor-ddd",
"private": true,
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/3dmind/test-meteor-ddd.git"
},
"scripts": {
"start": "meteor run",
"lint": "tsc --noEmit && eslint . --ext .ts --ext .tsx --ext .js",
"test:unit": "jest",
"test:server": "meteor test --once --driver-package meteortesting:mocha"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"eslint --fix",
"git add"
],
"*.tsx": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
},
"testModule": "tests/server/main.ts"
},
"dependencies": {
"@babel/runtime": "^7.7.4",
"@material-ui/core": "^4.7.1",
"@material-ui/icons": "^4.5.1",
"bcrypt": "^3.0.7",
"formik": "^2.0.6",
"formik-material-ui": "^1.0.0",
"meteor-node-stubs": "^1.0.0",
"ramda": "^0.26.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.1.2",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^25.1.1",
"@types/meteor": "^1.4.37",
"@types/node": "^12.7.4",
"@types/ramda": "^0.26.22",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.3",
"@types/yup": "^0.26.26",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"babel-jest": "^24.9.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.1.0",
"husky": "^3.0.5",
"jest": "^25.1.0",
"lint-staged": "^9.4.0",
"prettier": "^1.19.1",
"ts-jest": "^25.1.0",
"typescript": "~3.7.2"
}
}