-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ogh.am",
"version": "1.1.0",
"description": "This is the source for my online ogham transliterator progressive web application (PWA) at https://ogh.am. Checkout the screenshots of it on iOS and Android below!",
"main": "index.js",
"scripts": {
"test": "echo \"no tests specified\"",
"precommit": "npm run format",
"format": "prettier --write --single-quote public/**/*.js public/*.js src/**/*.ts src/**/*.tsx src/*.tsx src/*.ts",
"start": "concurrently 'webpack --config webpack.dev.js --watch' 'http-server -p 3030 -c0 ./public'",
"build": "webpack -p --config webpack.prod.js",
"deploy": "DEPLOY=true npm run build && firebase deploy",
"serve": "http-server -p 3030 -c0 ./public"
},
"author": "Evan Shortiss <evanshortiss@gmail.com> (http://evanshortiss.com/)",
"dependencies": {
"clipboard-copy": "^4.0.1",
"diacritics": "~1.3.0",
"ogham": "~0.2.0",
"preact": "~8.2.7",
"prettier": "~1.11.1"
},
"devDependencies": {
"@types/diacritics": "~1.3.1",
"@types/node": "~10.0.9",
"@types/qs": "~6.5.1",
"babel-core": "~6.26.0",
"babel-loader": "~7.1.4",
"babel-preset-env": "~1.6.1",
"clean-webpack-plugin": "~0.1.19",
"concurrently": "~3.5.1",
"copy-webpack-plugin": "~4.5.1",
"css-loader": "~1.0.0",
"cssnano": "~4.0.2",
"env-var": "~7.0.0",
"extract-text-webpack-plugin": "~3.0.2",
"firebase-tools": "~9.0.1",
"html-webpack-plugin": "~3.2.0",
"http-server": "^0.12.3",
"husky": "~0.14.3",
"optimize-css-assets-webpack-plugin": "~3.2.0",
"style-loader": "~0.21.0",
"ts-loader": "~3.5.0",
"typescript": "~2.7.2",
"uglifyjs-webpack-plugin": "~1.2.4",
"url-loader": "~1.0.1",
"webpack": "~3.11.0",
"webpack-bundle-analyzer": "~2.11.1",
"webpack-cli": "~1.5.3",
"webpack-merge": "~4.1.2",
"workbox-webpack-plugin": "~3.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanshortiss/ogh.am.git"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/evanshortiss/ogh.am/issues"
},
"homepage": "https://github.com/evanshortiss/ogh.am#readme"
}