-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.7 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.7 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
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
109
110
111
112
113
114
{
"name": "thailpha",
"version": "3.2.3",
"description": "Thai alphabet webapp",
"homepage": "https://thailpha-3e7f6.firebaseapp.com/",
"author": "Yannick Aïvayan <yannick.aivayan@hiswe.net> (http://hiswe.net)",
"main": "dist/index.html",
"repository": "git://github.com/Hiswe/thailpha",
"keywords": [
"thai",
"alphabet"
],
"engines": {
"node": ">=10.15.0",
"npm": ">=6.4.1"
},
"scripts": {
"test": "gulp data && ava",
"start": "npm run build:prod && npm run serve:prod",
"dev": "gulp dev",
"toc": "doctoc README.md README_DEV.md --github",
"build": "gulp build:prod --compress",
"build:assets": "gulp assets",
"build:css": "gulp css",
"build:dev": "gulp build",
"build:js": "gulp js",
"build:prod": "npm run build",
"serve:prod": "npm run build:prod && ws --https --port 5000 --directory dist --spa index.html",
"serve:dev": "ws --https --port 5000 --directory dist --spa index.html --log.format tiny",
"serve:dev-no-https": "ws --port 4000 --directory dist --spa index.html --log.format tiny",
"watch:prod": "npm run build:prod --compress && gulp watch --compress",
"watch:dev": "npm run build:dev && gulp watch",
"release": "npm run test && npm run pre-release && npm run deploy",
"release:no-bump": "npm run pre-release:no-bump && node ./bin/release.js --no-bump",
"release:gh:no-bump": "npm run pre-release:gh:no-bump && npm run deploy:gh -- --no-bump",
"pre-release": "gulp pre-release --compress --release",
"pre-release:no-bump": "gulp pre-release --compress --release --no-bump",
"deploy": "node ./bin/release.js"
},
"ava": {
"files": [
"test/*.js"
],
"babel": false,
"compileEnhancements": false,
"require": [
"@babel/register"
]
},
"license": "MIT",
"dependencies": {
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.0.8",
"lodash.clonedeep": "^4.5.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-pose": "^4.0.7",
"react-router-dom": "^4.3.1",
"react-toastify": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.0.0-rc.2",
"@babel/preset-env": "^7.0.0-rc.2",
"@babel/preset-react": "^7.0.0-rc.2",
"@babel/register": "^7.0.0-rc.2",
"@babel/runtime": "^7.0.0-rc.2",
"acorn": "^6.1.0",
"ansi-magenta": "^0.1.1",
"autoprefixer": "^9.4.8",
"ava": "^1.2.1",
"babel-loader": "^8.0.0-beta",
"beeper": "^1.1.1",
"css-loader": "^2.1.0",
"csswring": "^7.0.0",
"del": "^3.0.0",
"doctoc": "^1.3.0",
"fancy-log": "^1.3.2",
"firebase-tools": "^6.4.0",
"fs-extra": "^7.0.0",
"gulp": "^4.0.0",
"gulp-cheerio": "^0.6.2",
"gulp-cheerio-clean-svg": "git+https://github.com/Hiswe/gulp-cheerio-clean-svg",
"gulp-define-module": "^0.1.1",
"gulp-gzip": "^1.4.2",
"gulp-if": "^2.0.2",
"gulp-json-editor": "^2.4.2",
"gulp-jsoncombine": "^1.0.2",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.4.0",
"gulp-size": "^3.0.0",
"gulp-svg-symbols": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"inquirer": "^6.2.2",
"local-web-server": "^2.6.0",
"merge-stream": "^1.0.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"sass-loader": "^7.1.0",
"shelljs": "^0.8.2",
"style-loader": "^0.23.1",
"webpack": "^4.29.5",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-dev-server": "^3.2.0",
"webpack-pwa-manifest": "^4.0.0",
"workbox-webpack-plugin": "^3.6.3",
"yargs": "^13.2.1"
}
}