-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "meteor-tuts",
"private": true,
"scripts": {
"start": "meteor run --settings settings.json",
"test": "meteor test --driver-package practicalmeteor:mocha --settings settings.json",
"lint": "eslint . --ext .jsx --fix"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.36",
"bcrypt": "^1.0.3",
"history": "^4.7.2",
"meteor-husky": "^0.14.6",
"meteor-node-stubs": "^0.3.2",
"moment": "^2.20.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"simpl-schema": "^1.4.2",
"underscore": "^1.9.1",
"uniforms": "^1.23.0",
"uniforms-unstyled": "^1.23.0"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.jsx": "eslint --fix"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.2.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-meteor": "^5.0.0",
"eslint-plugin-react": "^7.10.0",
"lint-staged": "^7.2.0"
},
"pre-commit": {
"silent": false
},
"precommit.silent": false
}