-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "asteroids",
"version": "1.0.0",
"description": "A ReactJS app that shows the information on asteroids closest to the earth, past and present, the data is being fetched from NASA's NEOW API",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel src/index.html --open",
"format": "prettier --write \"src/**/*.{js,jsx,scss,css,html}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Caleb335/asteroids.git"
},
"keywords": [
"Asteroids",
"space-app",
"data",
"space-data",
"earth's-danger"
],
"author": "Caleb Olojo",
"license": "ISC",
"bugs": {
"url": "https://github.com/Caleb335/asteroids/issues"
},
"homepage": "https://github.com/Caleb335/asteroids#readme",
"dependencies": {
"node-sass": "^4.14.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-reveal": "^1.2.2",
"styled-components": "^5.1.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1"
}
}