-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 2.32 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "acey",
"version": "2.5.1",
"private": true,
"scripts": {
"start": "node .",
"inspect": "node --inspect .",
"dist": "npm run build && npm run prune",
"build": "webpack --env.buildMode=production --progress --color --display=errors-only",
"prune": "npm prune --production",
"dev-start": "node . dev",
"dev-inspect": "node --inspect . dev",
"build-debug": "webpack --env.buildMode=debug --progress --color --display-max-modules=0",
"watch-debug": "webpack --env.buildMode=debug --progress --color --display-max-modules=0 -w",
"build-release": "webpack --env.buildMode=release --progress --color --display-max-modules=0",
"watch-release": "webpack --env.buildMode=release --progress --color --display-max-modules=0 -w"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "1.0.19",
"chalk": "2.4.2",
"clone": "2.1.2",
"date-fns": "1.30.1",
"es6-error": "4.1.1",
"fs-extra": "7.0.1",
"hapi": "18.1.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"mime-types": "2.1.22",
"nanoid": "2.0.1",
"node-cleanup": "2.1.2",
"node-fetch": "2.3.0",
"qs": "6.7.0",
"source-map-support": "0.5.11",
"string-format": "2.0.0",
"url-join": "4.0.1"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/runtime": "7.5.5",
"@types/chalk": "2.2.0",
"@types/clone": "0.1.30",
"@types/es6-error": "4.0.2",
"@types/fs-extra": "8.0.0",
"@types/hapi": "18.0.2",
"@types/js-yaml": "3.12.1",
"@types/lodash": "4.14.138",
"@types/mime-types": "2.1.0",
"@types/nanoid": "2.0.0",
"@types/node-cleanup": "2.1.1",
"@types/node-fetch": "2.5.0",
"@types/qs": "6.5.3",
"@types/string-format": "2.0.0",
"@types/url-join": "4.0.0",
"awesome-typescript-loader": "5.2.1",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"terser-webpack-plugin": "1.4.1",
"typescript": "3.6.2",
"webpack": "4.39.3",
"webpack-cli": "3.3.7",
"webpack-node-externals": "1.7.2"
}
}