-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.33 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
{
"name": "f4n.dev",
"version": "1.0.0",
"description": "The portfolio file for loxygen.",
"main": "src/index.tsx",
"repository": {
"type": "git",
"url": "git+https://github.com/loxygenK/f4n.dev.git"
},
"keywords": [
"portfolio"
],
"author": "loxygen.k <[email protected]>",
"license": "CC-BY-NC-4.0",
"bugs": {
"url": "https://github.com/loxygenK/f4n.dev/issues"
},
"homepage": "https://github.com/loxygenK/f4n.dev#readme",
"dependencies": {
"@apollo/client": "^3.4.15",
"@graphql-codegen/cli": "^2.2.0",
"@graphql-codegen/typescript": "^2.2.2",
"@svgr/webpack": "^5.5.0",
"@types/react-transition-group": "^4.4.3",
"@types/webpack-dev-middleware": "^5.0.2",
"dayjs": "^1.10.7",
"graphql": "^15.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-transition-group": "^4.4.2",
"react-twemoji": "^0.3.0",
"ress": "^4.0.0",
"webpack-dev-middleware": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "2.2.2",
"@graphql-codegen/typescript-operations": "2.1.5",
"@graphql-codegen/typescript-react-apollo": "3.1.4",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.0",
"@types/sass": "^1.16.1",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.25.1",
"fibers": "^5.0.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.0",
"prettier": "^2.3.2",
"sass": "^1.39.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-scss": "^3.20.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.1"
},
"scripts": {
"build": "tsc && webpack",
"type-check": "tsc",
"dev": "webpack-dev-server",
"dev:type-check": "tsc --watch",
"lint": "\"$npm_execpath\" lint:ts && \"$npm_execpath\" lint:eslint && \"$npm_execpath\" lint:stylelint && \"$npm_execpath\" lint:prettier",
"lint:eslint": "eslint './src/**/*.ts{,x}'",
"lint:stylelint": "stylelint './src/**/*.ts{,x}'",
"lint:prettier": "prettier -c './src/**/*.ts{,x}'",
"lint:ts": "tsc --noEmit",
"fix": "\"$npm_execpath\" fix:prettier && \"$npm_execpath\" fix:eslint && \"$npm_execpath\" fix:stylelint",
"fix:eslint": "\"$npm_execpath\" lint:eslint -- --fix",
"fix:stylelint": "\"$npm_execpath\" lint:stylelint -- --fix",
"fix:prettier": "\"$npm_execpath\" lint:prettier -- -w",
"codegen": "graphql-codegen --config codegen.yml",
"prepare": "husky install .hooks/.husky"
}
}