-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 786 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 786 Bytes
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
{
"name": "frameworkless-javascript-boilerplate",
"version": "0.0.1",
"description": "JavaScript boilerplate to create SPAs with no UI framework",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --hot --open",
"build": "webpack --mode production"
},
"keywords": [
"javascript",
"es6 and beyond",
"spa",
"frameworkless"
],
"author": "jhfgloria",
"license": "ISC",
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"html-webpack-plugin": "3.2.0",
"webpack": "4.16.4",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.5"
},
"dependencies": {
"uuid": "3.3.2"
}
}