This repository has been archived by the owner on Jun 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.47 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
{
"name": "rpjournal-frontend",
"version": "0.0.0",
"description": "A journaling tool for holding RPG session notes",
"scripts": {
"build": "next build",
"build-storybook": "build-storybook",
"dev": "next",
"format": "npm run prettier && npm run lint -- --fix",
"lint": "eslint --ignore-path .gitignore .",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|yml|yaml|css|less|ts|md|graphql|mdx)\"",
"start": "next start",
"storybook": "start-storybook -p 6006",
"test": "npm run type && jest",
"type": "tsc --pretty"
},
"license": "MIT",
"main": "n/a",
"author": "Mark Hernandez <mark@lion-byte.com>",
"devDependencies": {
"@babel/core": "^7.7.7",
"@lionbyte/eslint-config": "^1.4.0",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-knobs": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"@types/draft-convert": "^2.1.1",
"@types/draft-js": "^0.10.38",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.4",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"@types/react-timeago": "^4.1.1",
"@types/styled-components": "^4.4.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"csstype": "^2.6.8",
"eslint": "^6.8.0",
"husky": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-runner-eslint": "^0.7.5",
"jest-styled-components": "^6.3.4",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"react-test-renderer": "^16.12.0",
"typescript": "^3.7.4",
"typescript-styled-plugin": "^0.15.0"
},
"dependencies": {
"@reach/skip-nav": "^0.7.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-source-maps": "0.0.3",
"apollo-boost": "^0.4.7",
"apollo-client": "^2.6.8",
"babel-plugin-styled-components": "^1.10.6",
"draft-convert": "^2.1.8",
"draft-js": "0.11.0",
"draftail": "^1.3.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"next": "^9.1.7",
"next-fonts": "^0.19.0",
"next-with-apollo": "^4.2.0",
"nprogress": "^0.2.0",
"react": "^16.12.0",
"react-apollo": "^3.1.3",
"react-dom": "^16.12.0",
"react-hook-form": "^4.4.2",
"react-timeago": "^4.4.0",
"styled-components": "^4.4.1",
"turretcss": "^5.2.1",
"typeface-open-sans": "0.0.75",
"typeface-sarabun": "0.0.71"
}
}