-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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
{
"name": "r6-operators",
"version": "1.0.0",
"description": "Easily see which operator has which secondary gadget",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"start": "start http://localhost:4444 && node index.js"
},
"keywords": [
"r6",
"operators",
"gadgets"
],
"author": "BeBoRE",
"license": "ISC",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-pug": "^1.2.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-vue": "^6.2.2",
"vue": "^2.6.11"
},
"eslintConfig": {
"extends": [
"airbnb",
"plugin:vue/recommended"
],
"env": {
"browser": true,
"node": true,
"es2020": true
},
"globals": {
"Vue": "readonly",
"data": "readonly"
},
"plugins": [
"pug"
]
},
"dependencies": {
"express": "^4.17.1",
"helmet": "^3.22.0",
"pug": "^2.0.4"
}
}