-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.48 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.48 KB
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
{
"name": "bashplate",
"version": "2.0.0",
"description": "Bashplate generates bash script boilerplate code for option parsing and validation",
"main": "index.js",
"repository": "git@github.com:wwerner/bashplate.git",
"author": "Wolfgang Werner <mail@wolfgang-werner.net>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "parcel src/index.html --out-dir build/debug --no-source-maps",
"build": "parcel build src/index.html --out-dir dist --no-source-maps --public-url ./",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix"
},
"dependencies": {
"bulma": "^0.9.4",
"components": "^0.1.0",
"file-saver": "^2.0.5",
"pizzly-js": "^0.2.8",
"prismjs": "^1.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@types/file-saver": "^2.0.1",
"@types/handlebars": "^4.1.0",
"@types/prismjs": "^1.16.2",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-plugin-prismjs": "^2.0.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-handlebars-precompile": "^1.0.2",
"prettier": "^2.2.1",
"sass": "^1.32.7",
"typescript": "^4.1.5"
}
}