-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1000 Bytes
/
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
{
"name": "flight",
"version": "1.0.0",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"serve": "webpack serve"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/iamaleko/flight.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.1",
"nvm": "^0.0.4",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}