-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.71 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.71 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
{
"name": "deepconcern-website",
"version": "1.0.0",
"description": "My website",
"main": "src/index.tsx",
"repository": "https://github.com/deepconcern/deepconcern.github.io",
"author": "Wyatt Barnes <wyattlbarnes@gmail.com> (https://deepconcern.github.io)",
"license": "MIT",
"private": true,
"scripts": {
"build": "./scripts/build.sh",
"deploy": "./scripts/deploy.sh",
"fetch-repository-data": "./scripts/fetch-repository-data.js",
"format": "./scripts/format.sh",
"lint": "./scripts/lint.sh",
"start": "./scripts/start.sh"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@octokit/auth-token": "^2.4.0",
"@octokit/graphql": "^4.4.0",
"@octokit/request-error": "^2.0.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"dotenv": "^8.2.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"copy-webpack-plugin": "^5.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2"
}
}