-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "y",
"version": "1.0.0",
"description": "An aggregated security news dashboard to help me keep up to date with news in one single aggregated view",
"main": "index.js",
"scripts": {
"build": "webpack-cli",
"start:dev": "webpack-cli serve",
"watch": "webpack-cli --watch",
"test": "snyk test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cfereday/security-news-dashboard.git"
},
"keywords": [
"javascript",
"asynchronous"
],
"author": "Charlotte Fereday",
"license": "ISC",
"bugs": {
"url": "https://github.com/cfereday/security-news-dashboard/issues"
},
"homepage": "https://github.com/cfereday/security-news-dashboard#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "7.12.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.0",
"html-webpack-plugin": "^4.5.0",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"snyk": "^1.446.0"
},
"dependencies": {
"date-fns": "^2.16.1",
"node-fetch": "^2.6.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}