-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.8 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
{
"name": "dely-landing-page",
"version": "1.0.0",
"description": "Dely landing page",
"scripts": {
"clean": "rimraf -rf dist",
"clean:build": "yarn clean dist out build",
"start": "yarn clean && webpack-dev-server --config webpack.config.dev.js",
"dev": "yarn start",
"build": "webpack --config webpack.config.prod.js",
"build:dev": "webpack --config webpack.config.dev.js",
"prettier:lint": "prettier '**/*.{js?(on),ts?(x),scss,md,y?(a)ml,graphql,less}' --write=false --list-different",
"prettier:fix": "yarn prettier:lint --write=true"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/christianquispe/dely-landing-page.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aireck2/dely-landing-page/issues"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@svgr/webpack": "^5.4.0",
"@types/classnames": "^2.2.10",
"@types/dotenv": "^8.2.0",
"@types/node": "^14.14.0",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@types/webpack": "^4.41.22",
"babel-core": "^6.26.3",
"babel-plugin-import": "^1.13.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-root-import": "^6.5.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^4.0.0",
"emailjs-com": "^2.6.3",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.3",
"prettier": "^2.1.2",
"resolve-ts-aliases": "^1.0.1",
"sass": "^1.26.12",
"sass-loader": "^10.0.2",
"semantic-release": "^17.1.2",
"source-map-loader": "^1.1.0",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
},
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/jest-dom": "^5.11.4",
"@types/jest": "^26.0.14",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"bootstrap": "^4.5.2",
"classnames": "^2.2.6",
"css-loader": "^4.3.0",
"jest": "^26.5.2",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"style-loader": "^1.3.0",
"ts-jest": "^26.4.1"
}
}