-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "ptolemaic-system-simulator",
"version": "1.0.1",
"description": "re-implementation of NAAP Ptolemaic System Simulator https://astro.unl.edu/naap/ssm/animations/ptolemaic.html",
"main": "main.jsx",
"private": true,
"scripts": {
"serve": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint src/*.jsx",
"fix": "eslint src/*.jsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FoothillAstroSims/Ptolemaic-System-Simulator.git"
},
"author": "FoothillAstroSims",
"license": "ISC",
"bugs": {
"url": "https://github.com/FoothillAstroSims/Ptolemaic-System-Simulator/issues"
},
"homepage": "https://github.com/FoothillAstroSims/Ptolemaic-System-Simulator#readme",
"dependencies": {
"bootstrap": "4.6",
"d3-scale": "^4.0.2",
"jquery": "3.7.1",
"pixi.js": "^6.5.1",
"popper.js": "1.16.1",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"babel-loader": "*",
"css-loader": "^6.7.1",
"eslint": "^8.21.0",
"eslint-plugin-react": "^7.30.1",
"jsdoc": "^4.0.3",
"style-loader": "^1.2.1",
"webpack": "^5.92.1",
"webpack-cli": "*",
"webpack-dev-server": "*"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
]
}
}