-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.98 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
{
"name": "react-alarm-clock",
"version": "1.0.0",
"description": "Alarm clock made with React.js",
"author": "João Bezerra",
"license": "MIT",
"main": "webpack.config.js",
"scripts": {
"serve": "webpack serve --env config=development",
"build": "webpack --env config=development",
"build:dev": "webpack --env config=development",
"build:prod": "webpack --env config=production",
"build:gh-pages": "webpack --env config=gh-pages",
"lint": "eslint ./src --ext .ts"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@svgr/webpack": "^5.5.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.9.1",
"css-loader": "^5.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^5.0.0",
"mini-css-extract-plugin": "^1.3.5",
"node-sass": "^5.0.0",
"postcss-loader": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^10.1.1",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
},
"dependencies": {
"@bzrr/useclasses": "^1.0.7",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}