-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "react-moonphase",
"version": "1.1.1",
"description": "Display lunar phase with React and Pixi.js",
"main": "build/index.js",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "babel lib -d build",
"build-demo": "webpack --mode production",
"eslint": "eslint lib/*.js lib/*.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikolas/react-moonphase.git"
},
"keywords": [
"astronomy"
],
"author": "Nikolas Nyby",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/nikolas/react-moonphase/issues"
},
"homepage": "https://github.com/nikolas/react-moonphase#readme",
"dependencies": {
"@babel/cli": "^7.0.0",
"pixi.js-legacy": "~6.1.0",
"prop-types": "^15.8.1",
"react": "~17.0.2",
"react-dom": "~17.0.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.0.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "~7.32.2",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
]
}
}