-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.76 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.76 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
{
"name": "website",
"version": "1.0.0",
"description": "Personal Website",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"build": "webpack --mode production",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"author": "Anthony D'Amato",
"license": "MIT",
"dependencies": {
"@chakra-ui/core": "next",
"@chakra-ui/icons": "^1.0.0-rc.8",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"framer-motion": "^2.9.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"y18n": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.12.1",
"@babel/runtime": "^7.12.5",
"@types/chai": "^4.2.14",
"@types/fork-ts-checker-webpack-plugin": "^0.4.5",
"@types/mocha": "^8.2.0",
"@types/react-router-dom": "^5.1.7",
"@types/webpack": "^4.41.24",
"@types/webpack-dev-server": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.7.1"
}
}