-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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": "text-analysis",
"version": "1.0.0",
"description": "A tool to analyze bodies of text using Natural Language processing.",
"main": "index.js",
"engines": {
"node": "15.x",
"npm": "7.x"
},
"scripts": {
"test": "jest",
"start": "node src/server/index.js",
"nodemon": "nodemon src/server/index.js",
"build-dev": "webpack serve --config webpack.dev.js --open",
"build-prod": "webpack --config webpack.prod.js",
"heroku-postbuild": "webpack --config webpack.prod.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alfonsoruiz/text-analysis.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alfonsoruiz/text-analysis/issues"
},
"homepage": "https://github.com/alfonsoruiz/text-analysis#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.4.0",
"nodemon": "^2.0.7",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack-dev-server": "^3.11.2",
"workbox-webpack-plugin": "^6.1.2"
}
}