-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 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
{
"name": "@succinct-tools/succinct-barebones",
"version": "1.0.4",
"description": "The Succinct Barebones project is a boilerplate that sets up the bare minimum needed to get started on a new project. Includes Axios, Nodemon, Prettier and ESLint.",
"main": "index.html",
"scripts": {
"start": "webpack-dev-server --config webpack.config.js --mode development",
"server": "nodemon server.js",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/succinct-tools/succinct-barebones"
},
"author": "Jennifer Lyn Parsons",
"license": "The Unlicence",
"bugs": {
"url": "https://github.com/succinct-tools/succinct-barebones/issues"
},
"homepage": "https://github.com/succinct-tools/succinct-barebones#readme",
"dependencies": {
"axios": "^0.19.0",
"modern-css-reset": "^1.0.4",
"nodemon": "^1.19.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"style-loader": "^1.0.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
}
}