-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "nlp-udacity",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "nodemon ./src/server/index.js",
"dev": "webpack-dev-server --config webpack.config.js --open",
"build": "webpack --config webpack.prod.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"axios-mock-adapter": "^1.22.0",
"babel-loader": "^8.3.0",
"clean-webpack-plugin": "^3.0.0",
"dotenv": "^16.3.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.2.0",
"mini-css-extract-plugin": "^2.7.7",
"nodemon": "^3.0.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"workbox-webpack-plugin": "^7.0.0"
},
"dependencies": {
"axios": "^1.6.5",
"cors": "^2.8.5",
"css-loader": "^6.9.0",
"express": "^4.18.2",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.4",
"valid-url": "^1.0.9"
}
}