-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "esteid-helper",
"version": "0.4.0",
"description": "",
"author": "Thorgate <hi@thorgate.eu>",
"scripts": {
"build": "webpack --config cfg/prod.js --progress --profile --colors",
"dev_build": "webpack --config cfg/dev.js --progress --profile --colors",
"lint": "eslint *.js",
"prettier": "prettier --write *.js"
},
"main": "dist/Esteid.main.js",
"repository": {
"type": "git",
"url": "https://github.com/thorgate/esteid-helper"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-loader": "^8.0.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"exports-loader": "^0.6.2",
"expose-loader": "^0.6.0",
"imports-loader": "^0.6.3",
"prettier": "^2.2.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "all"
},
"private": true,
"license": "BSD"
}