-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "bananahammock.io",
"version": "1.0.0",
"description": "own-website, designed to host my resume, and maybe evolve when I want to try new things.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot",
"test": "jest --colors -b -e --logHeapUsage --no-cache",
"build": "webpack --mode production",
"deploy": "npm run build",
"lint": "eslint ./src"
},
"author": "Charles HUSQUIN",
"license": "ISC",
"dependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"autoprefixer": "^9.8.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.22.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.5.4",
"jest-css-modules": "^2.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}