-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.77 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.77 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
{
"name": "soyoscarrh_boilerplate",
"version": "0.2.0",
"description": "Template description for @SoyOscarRH projects",
"main": "Code/Pages/App/index",
"scripts": {
"build": "webpack --progress -p --config webpack.config.ts",
"watch": "webpack --progress -d --config webpack.config.ts --watch",
"stats": "webpack --profile --config webpack.config.ts --json > stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoyOscarRH/MyReactBoilerplate.git"
},
"author": "SoyOscarRH",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/SoyOscarRH/MyReactBoilerplate/issues"
},
"homepage": "https://github.com/SoyOscarRH/MyReactBoilerplate",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/materialize-css": "^1.0.6",
"@types/node": "^12.6.8",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/webpack": "^4.32.1",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"dts-css-modules-loader": "^1.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}