This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
forked from vielsoft/drupal-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "drupal-node.js",
"description": "Push notifications from Drupal.",
"version": "1.0.11",
"homepage": "https://github.com/casmbu/drupal-nodejs-typescript",
"repository": {
"type": "git",
"url": "git+https://github.com/casmbu/drupal-nodejs-typescript.git"
},
"license": "GPL-2.0",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build_all": "run-p build build_example_extension",
"build": "webpack --config webpack.config.js",
"build_example_extension": "webpack --config example_extension.webpack.config.js",
"test": "ts-mocha -p tsconfig.json src/**/*.spec.ts",
"tsc": "tsc",
"webpack": "webpack"
},
"dependencies": {
"body-parser": "1.18.x",
"express": "4.16.x",
"request": "2.88.x",
"socket.io": "2.2.x",
"socket.io-client": "2.2.x"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.1",
"@types/node": "^10.12.23",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^5.2.0",
"nock": "10.0.x",
"npm-run-all": "^4.1.5",
"ts-loader": "^5.3.3",
"ts-mocha": "^2.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-airbnb-base": "^0.2.0",
"typescript": "^3.3.3",
"uws": "10.148.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-node-externals": "^1.7.2"
}
}