-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.78 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
{
"name": "kodeklubben",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"concurrently": "^3.1.0",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-changed": "^1.3.0",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "^2.0.1",
"gulp-htmlmin": "^1.3.0",
"gulp-imagemin": "^4.1.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.1.1",
"gulp-uglify": "^1.5.1"
},
"scripts": {
"test": "./bin/phpunit --configuration app/phpunit.xml.dist",
"test:win": ".\\bin\\phpunit --configuration app/phpunit.xml.dist",
"setup": "php ./composer.phar install -n && npm install && ./node_modules/.bin/gulp build:dev && php app/console doctrine:schema:create --env=dev && php app/console doctrine:fixtures:load --env=dev -n",
"setup:win": "php .\\composer.phar install -n && npm install && .\\node_modules\\.bin\\gulp build:dev && php app/console doctrine:schema:create --env=dev && php app/console doctrine:fixtures:load --env=dev -n",
"start": "concurrently --kill-others \"php app/console server:run --docroot=web\" \"npm run watch\"",
"watch": "gulp",
"db:reload": "php app/console doctrine:fixtures:load --env=dev",
"db:update": "php app/console doctrine:schema:update --force --env=dev",
"build": "gulp build:dev",
"build:prod": "gulp build:prod",
"code-style": "./bin/php-cs-fixer fix src/ --dry-run --diff -vv",
"code-style:win": ".\\bin\\php-cs-fixer fix src/ --dry-run --diff -vv",
"cs": "./bin/php-cs-fixer fix src/ -vv",
"cs:win": ".\\bin\\php-cs-fixer fix src/ -vv"
},
"author": "",
"license": "",
"dependencies": {
"bootstrap-sass": "^3.3.6",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1"
}
}