-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.94 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.94 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
{
"devDependencies": {
"@symfony/webpack-encore": "^0.31.0",
"@types/jquery": "^3.5.1",
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-preset-env": "^1.7.0",
"core-js": "^3.0.0",
"file-loader": "^6.1.1",
"fork-ts-checker-webpack-plugin": "^4.0.0",
"node-sass": "^4.14.1",
"regenerator-runtime": "^0.13.2",
"sass-loader": "^10.0.2",
"ts-loader": "^5.3.0",
"typescript": "^4.0.3",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-notifier": "^1.6.0"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"buildWebpack": "webpack --mode production",
"buildJs": "tsc build/typescript/lib/*.ts && cp build/typescript/lib/*.js dist/assets/js/ && rm build/typescript/lib/*.js",
"buildCss": "for file in build/style/imports/* \\\\\\\\\\\\\\\\ndo \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\tout=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"$(basename \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"$file\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" .scss)\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\tsass \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"$file\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" dist/assets/css/\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"$out\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\".css\\\\\\\\\\\\\\\\ndone\\\\\\\\\\\\\\\\n",
"buildMainCss": "sass build/main.scss dist/assets/css/style.css ",
"Build": "npm run buildJs && npm run buildCss && npm run buildMainCss && npm run buildWebpack",
"postinstall": "link-module-alias",
"preinstall": "command -v link-module-alias && link-module-alias clean || true"
},
"dependencies": {
"css-loader": "^4.3.0",
"jquery": "^3.5.1",
"normalize.css": "^8.0.1",
"style-loader": "^1.2.1"
},
"_moduleAliases": {
"@library": "library"
}
}