-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.29 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
{
"name": "@bestmile/palette",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"chroma-js": "^2.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@testing-library/react": "^12.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.6",
"parcel": "^2.0.0-beta.2",
"prettier": "^2.3.2"
},
"scripts": {
"test": "jest --env=jsdom --watch",
"start": "parcel src/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbcochery/palette.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jbcochery/palette/issues"
},
"homepage": "https://github.com/jbcochery/palette#readme",
"babel": {
"presets": [
"@babel/env",
"@babel/preset-react"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"rules": {
"react/prop-types": 0
},
"env": {
"browser": true,
"jest": true,
"es6": true
}
}
}