-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) Β· 2.82 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
{
"name": "raoul-hausmann-correspondence",
"url": "git@github.com:vogelino/raoul-hausmann-correspondence.git",
"version": "0.0.1",
"description": "A visualisation of correspondences of Raoul Hausmann",
"engines": {
"node": "12.14.1"
},
"repository": {
"type": "git",
"url": "git@github.com:vogelino/raoul-hausmann-correspondence.git"
},
"scripts": {
"lint": "eslint ./src",
"lint-fix": "eslint --fix ./src",
"prettier": "prettier --write --config .prettierrc ./src/**/*.js",
"test": "next test --env=jsdom",
"storybook": "start-storybook -s ./static -p 3002 -c .storybook",
"create-svg-sprite": "svg-sprite-generate -d ./icons -o ./icons/icons-sprite.svg",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-fix"
}
},
"authors": [
"Lucas Vogel @vogelino <contact@vogelino.com> (https://vogelino.com)",
"Caspar Kirsch @kernfruit <caspar.kirsch@gmail.com> (https://github.com/kernfruit)",
"Dustin Kummer @miduku <miduku11@gmail.com> (https://github.com/miduku)",
"Emil Woop @e00 <ewoop@gismos.org> (https://github.com/e00)"
],
"license": "MIT",
"devDependencies": {
"@emotion/babel-preset-css-prop": "^11.0.0",
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-vogelint-react": "^1.0.3",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"husky": "^1.0.0-rc.13",
"lint-staged": "^4.3.0",
"prettier": "^1.11.1",
"svg-sprite-generator": "0.0.7",
"svg-sprite-loader": "^5.2.1"
},
"dependencies": {
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@saeris/apollo-server-vercel": "^0.4.0",
"@storybook/addon-actions": "^3.4.1",
"@storybook/react": "^3.4.1",
"@trainline/react-skeletor": "^1.0.2",
"apollo-cache-inmemory": "^1.2.9",
"apollo-client": "^2.4.1",
"apollo-client-preset": "^1.0.8",
"apollo-link": "^1.2.2",
"apollo-link-error": "^1.1.0",
"apollo-link-http": "^1.5.4",
"apollo-link-state": "^0.4.1",
"apollo-server": "^2.4.8",
"babel-plugin-emotion": "^9.1.0",
"camelcase": "^5.0.0",
"cors": "^2.8.5",
"d3-scale": "^2.0.0",
"date-fns": "^1.29.0",
"graphql": "^14.7.0",
"graphql-anywhere": "^4.1.7",
"graphql-tag": "^2.8.0",
"isomorphic-fetch": "^2.2.1",
"lodash.debounce": "^4.0.8",
"name-initials": "^0.1.3",
"next": "^10.0.5",
"paper": "^0.11.5",
"pluralize": "^7.0.0",
"polished": "^3.4.1",
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"react": "^17.0.1",
"react-apollo": "^2.0.4",
"react-click-outside": "github:tj/react-click-outside",
"react-dom": "^17.0.1",
"react-emotion": "^9.1.0",
"react-resize-detector": "^2.3.0",
"react-stickynode": "^1.4.1",
"recompose": "^0.26.0",
"storybook-addon-figma": "^0.1.0",
"tinycolor2": "^1.4.1"
}
}