-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "nbody",
"version": "0.2.0",
"description": "Configure, simulate and visualize n-body interactions",
"main": "./dist/src/index.js",
"types": "./dist/types/src/index.d.ts",
"module": "./dist/src/index.js",
"repository": "https://github.com/source-academy/nbody.git",
"author": "Yeluri Ketan",
"license": "Apache-2.0",
"files": [
"dist/*",
"README.md",
"LICENSE"
],
"keywords": [
"nbody",
"simulation",
"visualization",
"physics",
"gravity",
"space",
"three",
"plotly",
"3-body"
],
"scripts": {
"clean": "node scripts/clean.cjs",
"lint": "eslint --config src/.eslintrc.cjs --quiet .",
"docs": "yarn docs:storybook && yarn docs:api",
"docs:api": "typedoc",
"docs:storybook": "storybook build --docs -o docs",
"storybook": "storybook dev -p 6006",
"build": "yarn lint && yarn clean && tsc && yarn docs",
"dev": "yarn clean && tsc && yarn unlink && yarn link",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"lil-gui": "^0.19.2",
"stats.js": "^0.17.0"
},
"devDependencies": {
"@chromatic-com/storybook": "1.3.1",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-interactions": "^8.0.6",
"@storybook/addon-links": "^8.0.6",
"@storybook/addon-onboarding": "^8.0.6",
"@storybook/blocks": "^8.0.6",
"@storybook/react": "^8.0.6",
"@storybook/react-vite": "^8.0.6",
"@storybook/test": "^8.0.6",
"@types/eslint": "^8.4.10",
"@types/plotly.js": "^2.29.2",
"@types/plotly.js-dist": "npm:@types/plotly.js",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@types/three": "^0.163.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.1",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.8.0",
"plotly.js-dist": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^8.0.6",
"three": "^0.163.0",
"typedoc": "^0.25.12",
"typescript": "^5.4.2",
"vite": "^5.2.8"
},
"peerDependencies": {
"@types/plotly.js": "^2.29.2",
"@types/three": "^0.163.0",
"plotly.js-dist": "^2.30.1",
"three": "^0.163.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}