-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
36 lines (36 loc) · 1009 Bytes
/
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
{
"name": "react-nba-logos",
"version": "1.1.3",
"description": "React components for NBA team logos",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"build": "rm -rf dist && babel src --out-dir dist --copy-files",
"build-prod": "rm -rf dist && babel src --out-dir dist --copy-files && rm -rf src"
},
"keywords": [
"nba"
],
"repository": {
"type": "git",
"url": "https://github.com/ChrisKatsaras/react-nba-logos.git"
},
"author": "Christopher Katsaras",
"license": "ISC",
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}