-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2 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
{
"name": "Text-Analyzer",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node src/server/index.js",
"build-prod": "webpack --config webpack.prod.js",
"Dev": "webpack-dev-server --config webpack.dev.js --open",
"build-dev": "webpack --config webpack.dev.js"
},
"keywords": ["NLP","Natural", "Language", "Processor","Processing", "Text-Analyzer", "Text-Processor", "Aylien_API"],
"author": "Farhan_Kiyani",
"license": "ISC",
"description": "This_application_analyzes_the_given_text_or_URL_using_Aylien_API.",
"dependencies": {
"autoprefixer": "^9.7.6",
"aylien_textapi": "^0.7.0",
"@babel/runtime": "^7.5.5",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"clean-webpack-plugin": "^3.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"exports-loader": "^0.7.0",
"express": "^4.17.1",
"imports-loader": "^0.8.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"popper.js": "^1.16.1",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"terser-webpack-plugin": "^2.3.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.1",
"image-webpack-loader": "^6.0.0",
"jest": "^25.5.4",
"jquery": "^3.4.1",
"node-sass": "^4.14.0",
"sass": "^1.22.10",
"sass-loader": "^8.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"transfer-webpack-plugin": "^0.1.4",
"url-loader": "^4.1.0",
"webpack-bundle-analyzer": "^3.7.0",
"workbox-webpack-plugin": "^5.1.3"
}
}