-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·62 lines (62 loc) · 1.97 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
{
"name": "robin_kehr_bewerbungsseite",
"version": "v1.0.0-beta",
"description": "A Proof of Concept for a complete rewrite of the https://cleaner.earth/ platform using the MERN stack",
"main": "index.js",
"repository": {
"url": "https://github.com/rkehr/bewerbung",
"type": "git"
},
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"build:stable": "git pull origin master; yarn install; webpack --config webpack.config.prod.js",
"dev": "webpack-dev-server --open --config webpack.config.dev.js ",
"dev:hot": "npm run dev -- --hot ",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./"
},
"author": "Robin Kehr [email protected]",
"license": "ISC",
"keywords": [],
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.1",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"typescript": "^4.1.3",
"webpack": "^5.16.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"core-js": "3",
"date-fns": "^2.16.1",
"framer-motion": "^3.2.2-rc.1",
"normalize-scss": "^7.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-cool-inview": "^1.2.0",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-use-gesture": "^9.0.0",
"regenerator-runtime": "^0.13.7",
"zustand": "^3.3.1"
}
}