This repository was archived by the owner on Feb 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.48 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.48 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
{
"name": "skeleton",
"version": "1.0.0",
"description": "This repo is to serve as a semi-basic skeleton for the Silex framework. It\r includes basic user authentication, Eloquent ORM, CSRF, and Monolog logging. It\r will also include some tools for creating, transpiling, compiling, and minifying\r your SCSS, CSS, and ES6 JavaScript. All of these resources should be and hopefully\r are, a great start to any project when using PHP.",
"main": "index.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"serve": "cd public; php -S localhost:8080",
"test": "phpunit --bootstrap vendor/autoload.php tests",
"style": "php-cs-fixer fix ./src --using-cache no --rules=@Symfony,-new_with_braces --show-progress estimating"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wappr/skeleton.git"
},
"author": "Levi Durfee <levi.durfee@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wappr/skeleton/issues"
},
"homepage": "https://github.com/wappr/skeleton#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.6.1",
"path": "^0.12.7",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1"
}
}