-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.53 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
55
{
"name": "react-basic-base",
"version": "1.0.0",
"description": "template for applications with react",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --env.NODE_ENV=production --mode production",
"dev": "webpack-dev-server --env.NODE_ENV=development",
"lint": "standard",
"lint:fix": "standard --fix",
"start": "serve ./dist -s -p ${PORT:-4000}"
},
"author": "@cosmosoftroot <cosmosoft.soluciones@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"css-loader": "3.5.3",
"dotenv-webpack": "^2.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "4.3.0",
"husky": "^4.2.5",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "4.14.1",
"standard": "^14.3.4",
"style-loader": "1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"sass-loader": "^8.0.2",
"serve": "^11.3.2"
},
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix",
"pre-push": "npm run lint:fix"
}
}
}