-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 993 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
{
"devDependencies": {
"@symfony/webpack-encore": "^0.17.0"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"serve": "php bin/console server:run",
"webpack-dev": "node_modules/.bin/encore dev",
"webpack-dev-watch": "node_modules/.bin/encore dev --watch",
"webpack-prod": "node_modules/.bin/encore production",
"clear-cache-prod": "php bin/console cache:clear --env=prod --no-debug",
"drop-database": "php bin/console doctrine:database:drop --force --if-exists",
"create-database": "php bin/console doctrine:database:create",
"create-schema": "php bin/console doctrine:schema:create",
"create-source-bundle": "git archive -v -o serverful-webapp.zip --format=zip HEAD"
},
"dependencies": {
"bootstrap": "^4.1.0",
"jquery": "^3.3.1",
"node-sass": "^4.8.3",
"npm": "^5.8.0",
"popper.js": "^1.14.3",
"sass-loader": "^6.0.7"
}
}