-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 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
{
"name": "spacex-visualization",
"version": "1.0.0",
"description": "A visualization of SpaceX launches",
"main": "main.js",
"scripts": {
"test": "npm run scss",
"scss": "sass src/style.scss public/style.css",
"build": "webpack",
"watch": "sass src/style.scss public/style.css --watch & webpack --watch",
"start": "webpack serve --mode development"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/bbutler522/SpaceX-Visualization.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/bbutler522/SpaceX-Visualization/issues"
},
"homepage": "/~https://github.com/bbutler522/SpaceX-Visualization#readme",
"dependencies": {
"moment": "^2.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.25.1",
"react-router-dom": "^6.25.1"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"sass": "^1.77.8",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.0"
}
}