Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ffan0811 committed Jul 2, 2020
0 parents commit eb80da4
Show file tree
Hide file tree
Showing 6 changed files with 394 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
.cache/
dist/
build/
.parcel-cache
.vscode/
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Development server

`npm run start`
118 changes: 118 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "cornerstone-sandbox",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel src/index.html -p 8081 --no-source-maps"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cornerstone-core": "2.2.4",
"cornerstone-math": "0.1.6",
"cornerstone-tools": "2.3.8",
"cornerstone-wado-image-loader": "3.1.2",
"dicom-parser": "1.8.5",
"hammerjs": "2.0.8",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {}
}
14 changes: 14 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="." />
<title>React App</title>
</head>
<body>
<div id="root"></div>
<script src="./index.js"></script>
</body>
</html>
Loading

0 comments on commit eb80da4

Please sign in to comment.