-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.83 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": "storytelling-with-data",
"version": "0.0.1",
"description": "All graphs from Storytelling With Data written by Cole Nussbaumer Knaflic recreated with Highcharts in Next.js",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"storybook": "start-storybook",
"build-storybook": "build-storybook -c .storybook",
"lint": "./node_modules/.bin/eslint ./ --ext .jsx --ext .js",
"lint-fix": "./node_modules/.bin/eslint ./ --ext .jsx --ext .js --fix",
"cypress:open": "./node_modules/.bin/cypress open",
"cypress:record": "./node_modules/.bin/cypress run --record --key 7bf63285-bd95-4d01-89fa-1973e746a0bb",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdamMescher/storytelling-with-data.git"
},
"keywords": [],
"author": "Adam Mescher",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdamMescher/storytelling-with-data/issues"
},
"homepage": "https://github.com/AdamMescher/storytelling-with-data#readme",
"dependencies": {
"@storybook/react": "^5.3.19",
"babel-eslint": "^10.1.0",
"chroma-js": "^2.1.0",
"cypress": "^4.10.0",
"highcharts": "^8.1.2",
"highcharts-react-official": "^3.0.0",
"jest": "^26.1.0",
"next": "^9.4.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-table": "^7.2.2",
"styled-components": "^5.1.1",
"styled-reset": "^4.2.0",
"uuid": "^8.2.0"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.6"
}
}