forked from jmcPereira/Alloy4FunWebApp
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
108 lines (108 loc) · 3.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "meteor_docker",
"private": true,
"scripts": {
"start": "MONGO_URL=mongodb://localhost:27017 meteor --settings settings.json",
"test": "TEST_BROWSER_DRIVER=chrome meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"lint": "eslint . --fix"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"classie": "^1.0.0",
"codemirror": "^5.58.3",
"cytoscape": "^2.7.29",
"meteor-node-stubs": "^0.4.1",
"qtip2": "^3.0.3",
"simpl-schema": "^1.10.2"
},
"meteor": {
"mainModule": {
"server": "server/main.js"
}
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^10.1.0",
"chromedriver": "74.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-meteor": "^5.2.0",
"eslint-plugin-react": "^7.21.5",
"puppeteer": "^19.5.2",
"selenium-webdriver": "^4.0.0-alpha.7"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"no-underscore-dangle": "off",
"no-undef": "off",
"no-plusplus": "off",
"semi": [
"error",
"never"
],
"no-var": "error",
"comma-dangle": [
"error",
"never"
],
"object-curly-newline": [
"error",
{
"ImportDeclaration": "never",
"ExportDeclaration": "never"
}
],
"indent": [
"error",
4
],
"object-shorthand": [
"error",
"always",
{
"avoidQuotes": false
}
],
"meteor/eventmap-params": [
"error",
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"meteor/template-names": [
"off"
]
},
"settings": {
"import/resolver": "meteor"
}
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}