-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.76 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
{
"name": "node-documents-processor",
"version": "2.0.0",
"description": "Node Document Processor",
"main": "src/js/main.js",
"author": "Tuqire hussain <me@tuqire.com> (http://www.tuqire.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tuqire/node-documents-processor"
},
"homepage": "",
"scripts": {
"build": "cd client && NODE_ENV='production' webpack",
"lint": "eslint client/src && eslint client/webpack.config.js",
"start:client": "cd client && webpack-dev-server",
"start:mock-external-server": "node mock-external-server",
"start:server": "node --experimental-worker server"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"random-words": "^1.1.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.1.6",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-markdown": "^1.0.0-beta.7",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11"
},
"engines": {
"node": ">=10.5.0"
}
}