-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "natural-language-processing-app",
"version": "1.0.0",
"description": "### Summary",
"main": "index.js",
"scripts": {
"start": "node src/server/index",
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "webpack-dev-server --config webpack.dev.js --open",
"build-prod": "webpack --config webpack.prod.js",
"nodemon": "nodemon src/server/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickojeh/natural-language-processing-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/patrickojeh/natural-language-processing-app/issues"
},
"homepage": "https://github.com/patrickojeh/natural-language-processing-app#readme",
"dependencies": {
"axios": "^0.24.0",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"babel-loader": "^8.2.3",
"css-loader": "^3.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^1.4.1",
"node-sass": "^4.14.1",
"nodemon": "^2.0.15",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^4.2.3",
"webpack-dev-server": "^4.7.2"
},
"engines": {
"node": "14.5"
}
}