-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "flight-skeleton",
"version": "1.2.0-alt",
"description": "This skeleton provides you a quick start for the development of an application with the [Flight](http://flightphp.com) PHP microframework.",
"private": "true",
"scripts": {
"build": "webpack",
"dev": "webpack --watch --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markhughes/flight-skeleton.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/markhughes/flight-skeleton/issues"
},
"homepage": "https://github.com/markhughes/flight-skeleton#readme",
"devDependencies": {
"autoprefixer": "^10.4.13",
"css-loader": "^6.7.2",
"postcss-loader": "^7.2.4",
"sass": "^1.50.1",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.94.0",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"bootstrap": "^5.2.3",
"popper.js": "^1.16.1"
},
"volta": {
"node": "18.12.1",
"npm": "9.1.2"
}
}