-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.92 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
{
"name": "natural-language-processing-website",
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(scss|css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"version": "1.0.0",
"description": "## About This website was created for Udacity's Front End Developer nanodegree. Instead of using the base code provided by Udacity, I decided to build everything from scratch.",
"main": "index.js",
"scripts": {
"test": "jest",
"start-dev-server": "webpack-dev-server --config webpack.dev.js --open",
"build-dev": "webpack --config webpack.dev.js",
"build-prod": "webpack --config webpack.prod.js",
"start-backend": "npm run build-prod && node src/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jordan-Gillard/natural-language-processing-website.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jordan-Gillard/natural-language-processing-website/issues"
},
"homepage": "https://github.com/Jordan-Gillard/natural-language-processing-website#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-jest": "^25.2.6",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"html-webpack-plugin": "^4.0.4",
"jest": "^25.2.7",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"body-parser": "latest",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"package.json": "^2.0.1",
"regenerator-runtime": "latest",
"workbox-webpack-plugin": "^5.1.2"
}
}