-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.23 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
{
"name": "color-picker",
"version": "0.0.7",
"main": "dist/index.js",
"private": false,
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/nstolpe/color-picker"
},
"scripts": {
"start": "webpack serve --mode development --open --hot --config=webpack.dev.config.js",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production webpack --config=webpack.build.config.js",
"clean": "rimraf dist",
"test": "echo You have no tests.\nWrite some.",
"lint": "eslint src/",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"prepare": "npm run build"
},
"babel": {
"presets": [
"@babel/env",
"@babel/preset-react",
[
"@babel/preset-typescript",
{
"allExtensions": true,
"isTSX": true
}
]
],
"plugins": [
"@emotion"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@types/chroma-js": "^2.1.4",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"babel-loader": "^9.1.0",
"chroma-js": "^2.4.2",
"cross-env": "^7.0.2",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"portfinder": "^1.0.32",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"react-test-renderer": "18.2.0",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "3.0.0"
}
}