-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
79 lines (79 loc) · 2.01 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": "qtfm-app",
"private": true,
"scripts": {
"start": "meteor run",
"test": "jest",
"lint": "eslint . --ext .js --ext .jsx",
"lint:fix": "eslint . --ext .js --ext .jsx --fix",
"prettier:all": "prettier --write \"./**/*.{js,jsx}\"",
"prettier:check": "prettier -l \"./**/*.{js,jsx}\"",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"commit": "git-cz"
},
"engines": {
"node": "8.11.4"
},
"dependencies": {
"@babel/runtime": "7.2.0",
"bcrypt": "3.0.2",
"bootstrap": ">=4.3.1",
"bootswatch": "^4.2.1",
"faker": "^3.1.0",
"lodash": "4.17.11",
"meteor-node-stubs": "^0.4.1",
"popper.js": "1.14.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.4",
"react-dom": "^16.8.6",
"react-icons": "^3.6.1",
"react-router-dom": "^4.3.1",
"simpl-schema": "^1.5.3"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-plugin-module-resolver": "^3.2.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "2.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "1.1.3",
"jest": "^24.5.0",
"jest-meteor-stubs": "^1.5.1",
"lint-staged": "8.0.4",
"prettier": "1.14.3"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}