-
Notifications
You must be signed in to change notification settings - Fork 138
/
package.json
executable file
·97 lines (97 loc) · 2.75 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
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
{
"name": "javascript-tutorial-server",
"version": "2.0.0",
"private": true,
"scripts": {
"fixperms": "sudo chown -R `id -u` .* * ~/.n*",
"//": "test must exit with status 1 if fails, don't use | or ensure the right exit code if you do",
"test": "cross-env SELENIUM_LOCAL=1 NODE_ENV=test NODE_PATH=./modules ./node_modules/.bin/gulp test",
"build": "cross-env NODE_PATH=./modules ./node_modules/.bin/gulp build",
"gulp": "cross-env NODE_PRESERVE_SYMLINKS=1 NODE_PATH=./modules ./node_modules/.bin/gulp"
},
"precommit": "NODE_ENV=development node `which gulp` pre-commit",
"//": "node-xmpp-client installs for linux only",
"dependencies": {
"@trysound/sax": "^0.2.0",
"autoprefixer": "^9",
"babel-core": "^6",
"babel-loader": "^7",
"babel-plugin-transform-flow-strip-types": "*",
"babel-plugin-transform-runtime": "*",
"babel-preset-env": "*",
"babelfish": "^1.1.2",
"bemto.pug": "iliakan/bemto",
"bunyan": "*",
"chokidar": "^2.0.4",
"clarify": "^2.1.0",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"csrf": "^3",
"css-loader": "^0",
"file-loader": "^1.1",
"fs-extra": "*",
"gm": "^1",
"gulp": "^4",
"gulp-livereload": "^4",
"html-entities": "^1.3.1",
"image-size": "*",
"js-yaml": "^4",
"json-loader": "^0.5.7",
"koa": "^2",
"koa-bodyparser": "^4",
"koa-conditional-get": "^2",
"koa-etag": "^3",
"koa-mount": "^3",
"koa-router": "^7",
"koa-static": "^5",
"limax": "^2.0.0",
"lodash": "*",
"markdown-it": "^8",
"markdown-it-container": "*",
"markdown-it-deflist": "*",
"mime": "^2.3",
"mini-css-extract-plugin": "^0",
"minimatch": "^3.0.4",
"mongoose": "^5.9.5",
"multiparty": "*",
"mz": "*",
"nib": "*",
"node-notifier": "*",
"node-uuid": "*",
"node-zip": "*",
"nodemon": "^1.18.4",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"path-to-regexp": "^6.2",
"postcss-loader": "^3",
"prismjs": "^1",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"pug-runtime": "^2.0.4",
"request": "^2.34",
"request-promise": "^4.2",
"rupture": "^0.7",
"style-loader": "^0",
"stylus": "^0.59.0",
"stylus-loader": "^3",
"terser-webpack-plugin": "^4",
"trace": "^3.1.0",
"uglify-es": "^3",
"uglifyjs-webpack-plugin": "^1",
"webpack": "^4.44.2",
"yaml-loader": "^0.5.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/javascript-tutorial/server.git"
},
"author": "Ilya Kantor",
"license": "CC BY-NC-SA 3.0",
"bugs": {
"url": "https://github.com/javascript-tutorial/server/issues"
},
"devDependencies": {
"mocha": "^7.1.1",
"should": "^13.2.3"
}
}