-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 3.72 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-color-picker-palette",
"version": "2.0.4",
"description": "ColorPickerPalette is a React reusable color picker palette written in TypeScript.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"typescript",
"react",
"color",
"picker",
"palette",
"color picker",
"color picker palette"
],
"scripts": {
"clean": "rimraf ./lib ./coverage ./out",
"check": "npm run clean && npm run lint && npm run tsc && npm run test && npm run loki && npm run cypress:headless",
"check:ci": "npm run clean && npm run lint && npm run tsc && npm run test",
"tsc": "tsc",
"tsc:watch": "tsc --watch --pretty",
"build": "tsc -p ./tsconfig.prod.json",
"build:watch": "npm run build -- --watch --pretty",
"build:prod": "npm run build",
"lint": "eslint './src/**/*.{js,ts,tsx}' & prettier './src/**/*.{js,ts,tsx}' --check",
"lint:fix": "eslint './src/**/*.{js,ts,tsx}' --fix & prettier './src/**/*.{js,ts,tsx}' --write",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook -c .storybook -o .out",
"storybook:build:local": "npx http-server .out",
"storybook:deploy": "npm run check && npm run storybook:build && storybook-to-ghpages",
"test": "TZ=UTC jest",
"test:no-coverage": "TZ=UTC jest --coverage=false",
"test:watch": "TZ=UTC jest --coverage=false --watch",
"loki": "loki test --port 6006",
"loki:approve": "loki approve",
"cypress": "cypress open",
"cypress:headless": "$(npm bin)/cypress run"
},
"repository": {
"type": "git",
"url": "https://github.com/gibbok/react-color-picker-palette.git"
},
"author": "GibboK",
"license": "MIT",
"bugs": {
"url": "https://github.com/gibbok/react-color-picker-palette/issues"
},
"homepage": "https://github.com/gibbok/react-color-picker-palette#readme",
"dependencies": {
"react-dom": "^16.12.0",
"react": "^16.12.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@bahmutov/add-typescript-to-cypress": "^2.1.2",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-storyshots": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@storybook/storybook-deployer": "^2.8.5",
"@storybook/theming": "^5.3.18",
"@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.5",
"@types/events": "^3.0.0",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.0",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"canvas": "^2.6.1",
"css-loader": "^3.4.2",
"csstype": "^2.6.10",
"cypress": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.7",
"loki": "^0.20.1",
"prettier": "^2.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"rimraf": "^3.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.docker",
"width": 1366,
"height": 768,
"deviceScaleFactor": 1,
"mobile": false
}
}
}
}