-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "sar-demo",
"version": "1.0.0",
"description": "Simulation of Synthetic Aperature Radar and Backprojection",
"scripts": {
"build-webpack": "webpack --config webpack.config.js",
"build-css": "postcss css/*.css --dir dist",
"build-njk": "node tools/build.js && cp img/* dist/",
"build": "concurrently npm:build-webpack npm:build-css npm:build-njk",
"watch-webpack": "webpack --watch --config webpack.config.js",
"watch-css": "postcss css/*.css --dir dist --watch",
"watch-njk": "nodemon",
"watch": "concurrently npm:watch-webpack npm:watch-css npm:watch-njk",
"setup": "mkdir -p dist"
},
"author": "piman51277",
"private": true,
"dependencies": {
"html-minifier": "^4.0.0",
"nunjucks": "^3.2.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/nunjucks": "^3.2.6",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cssnano": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.5.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"javascript-obfuscator": "^4.1.1",
"nodemon": "^3.1.4",
"postcss": "^8.4.39",
"postcss-calc": "^10.0.0",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-nested": "^6.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack-cli": "^5.1.4",
"webpack-obfuscator": "^3.5.1"
},
"browerslist": [
"defaults and fully supports es6-module"
]
}