-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.14 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
{
"name": "@pittica/art",
"private": false,
"description": "Pittica logo and other artworks.",
"version": "2.1.0",
"author": {
"name": "Lucio Benini",
"email": "info@pittica.com",
"url": "https://pittica.com"
},
"bugs": {
"url": "https://github.com/pittica/art/issues"
},
"deprecated": false,
"homepage": "https://github.com/pittica/art",
"keywords": [
"art",
"pittica"
],
"dependencies": {
"classnames": "^2.3.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"prettier": "^2.5.1",
"react-scripts": "^5.0.0"
},
"scripts": {
"test": "react-scripts test",
"prepare": "rimraf ./dist && mkdirp ./dist && babel src --out-dir dist --copy-files"
},
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pittica/art.git"
},
"eslintConfig": {
"extends": "react-app"
},
"config": {
"access": "public"
},
"babel": {
"presets": [
[
"@babel/preset-react"
]
]
}
}