-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.68 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
{
"name": "o2system-espresso",
"version": "1.1.0",
"description": "O2System Javascript Framework",
"homepage": "https://espresso.o2system.id",
"main": "src/main.js",
"author": "Steeven Andrian Salim <steeven@o2system.id> (https://o2system.id/team/profile/steeven)",
"contributors": [
"Nur Wachid <nur.wachid@o2system.id> (https://o2system.id/team/profile/nur-wachid)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://git@github.com/o2system/espresso.git"
},
"scripts": {
"start": "webpack-dev-server --mode development --watch --open",
"dev": "nodemon --inspect --watch config --watch server server/main.js",
"build": "webpack --config=config/webpack.build.js",
"build:docs": "webpack --config=config/webpack.docs.js"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.2.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^2.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"nodemon": "^1.18.9",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.0",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"axios": "^0.18.0",
"template7": "^1.4.1"
}
}