-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "mahal-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack serve --open --config config/webpack/dev.config.js",
"deploy": "cross-env NODE_ENV=production webpack --config config/webpack/prod.config.js",
"build": "cross-env NODE_ENV=development webpack --config config/webpack/dev.config.js"
},
"author": "",
"license": "",
"private": "true",
"dependencies": {
"jsstore": "^4.5.2",
"mahal": "^1.4.1"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.2.3",
"babel-plugin-parameter-decorator-custom": "^1.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.2.0",
"mahal-webpack-loader": "^1.4.1",
"mini-css-extract-plugin": "^2.5.3",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"project": {
"framework": "mahal",
"language": "js"
}
}