-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
{
"name": "natural_language_processing",
"version": "1.0.0",
"description": "Natural language processor for articles",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "node src/server/server.js",
"build:dev": "webpack-dev-server --config webpack.dev.js --open",
"build:prod": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apennell/natural-language-processing.git"
},
"author": "\"Annie Pennell <[email protected]> (https://anniepennell.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/apennell/natural-language-processing/issues"
},
"homepage": "https://github.com/apennell/natural-language-processing#readme",
"dependencies": {
"@babel/runtime": "^7.11.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.4.2",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.4"
}
}