This repository was archived by the owner on Oct 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.22 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.22 KB
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
{
"name": "full-stack-sandbox-web",
"description": "Full Stack Sandbox - Web Application build with Next.js",
"engines": {
"node": ">=10"
},
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/xhudec/full-stack-sandbox-web.git"
},
"keywords": [
"react",
"nextjs",
"typescript",
"graphql",
"styled-components"
],
"author": "Lukas Hudec <hudec.luke@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xhudec/full-stack-sandbox-web/issues"
},
"homepage": "https://github.com/xhudec/full-stack-sandbox-web#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"storybook": "start-storybook",
"_prettier": "prettier \"**/*.+(js|jsx|ts|tsx|json|css|less|graphql|md|mdx)\"",
"prettier:format": "npm run _prettier -- --write",
"prettier:validate": "npm run _prettier -- --list-different",
"lint:css": "stylelint \"*.(css|scss|js|jsx|ts|tsx)\"",
"lint:js": "eslint --ext js,jsx,ts,tsx .",
"lint": "npm run lint:js && npm run lint:css",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck": "tsc --project ./tsconfig.json",
"deps:check": "npm-check --update"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@apollo/react-ssr": "^4.0.0",
"apollo-boost": "^0.4.9",
"apollo-client": "^2.6.10",
"dotenv": "^8.2.0",
"dotenv-webpack": "^3.0.0",
"graphql": "^14.7.0",
"graphql-tag": "^2.11.0",
"isomorphic-unfetch": "^3.1.0",
"next": "^9.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@commitlint/cli": "^11.0.0",
"@storybook/addon-actions": "^6.0.22",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.0.22",
"@storybook/react": "^6.0.22",
"@strv/commitlint-config": "^1.1.0",
"@strv/eslint-config-node": "^2.2.2",
"@strv/eslint-config-react": "^3.1.2",
"@strv/eslint-config-typescript": "^2.3.0",
"@strv/prettier-config": "^1.0.3",
"@strv/stylelint-config-styled-components": "^1.1.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/react": "^16.9.50",
"@types/styled-components": "^5.1.3",
"@types/testing-library__jest-dom": "^5.9.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@zeit/next-typescript": "^1.1.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"is-ci-cli": "^2.1.2",
"jest": "^25.5.4",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.5.0",
"npm-check": "^5.9.2",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3"
}
}