forked from xmmedia/starter_symfony_4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.53 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"//": "@todo-symfony",
"name": "xm_starter_symfony_4",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/xmmedia/starter_symfony_4"
},
"license": "MIT",
"//private": true,
"scripts": {
"dev": "encore dev",
"dev-server": "encore dev-server --config webpack.dev-server.config.js --hot --port 9008 --public dev.example:443",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "cypress open",
"lint:js": "vue-cli-service lint --ext .js,.vue public/js",
"lint:js:fix": "vue-cli-service lint --ext .js,.vue public/js --fix",
"lint:css": "stylelint public/css/**/*.scss",
"lint:css:fix": "stylelint public/css/**/*.scss --fix",
"watch": "encore dev --watch",
"build": "encore production",
"stats": "encore production --profile --json > webpack-stats.json"
},
"dependencies": {
"apollo-cache-inmemory": "^1.3.12",
"apollo-client": "^2.4.8",
"apollo-link": "^1.2.6",
"apollo-link-http": "^1.5.9",
"cuid": "^2.1.6",
"date-fns": "^1.29.0",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"lodash": "^4.17.11",
"portal-vue": "^2.1.3",
"qs": "^6.7.0",
"register-service-worker": "^1.0.0",
"unfetch": "^4.0.1",
"uuid": "^3.3.2",
"vue": "^2.5.17",
"vue-apollo": "^3.0.0-beta.27",
"vue-global-events": "^1.1.2",
"vue-js-modal": "^1.3.26",
"vue-router": "^3.0.1",
"vuelidate": "^0.7.4",
"vuex": "^3.0.1"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.0.2",
"@symfony/webpack-encore": "^0.27.0",
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-e2e-cypress": "^3.0.5",
"@vue/cli-plugin-eslint": "^3.0.5",
"@vue/cli-plugin-pwa": "^3.0.5",
"@vue/cli-plugin-unit-jest": "^3.0.5",
"@vue/cli-service": "^3.0.5",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"css-loader": "^2.1.1",
"dotenv-webpack": "^1.6.0",
"eslint-plugin-cypress": "^2.0.1",
"faker": "^4.1.0",
"glob-all": "^3.1.0",
"node-sass": "^4.9.4",
"postcss-loader": "^3.0.0",
"purgecss-webpack-plugin": "^1.3.1",
"sass-loader": "^7.1.0",
"stylelint": "^10.0.1",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.3.2",
"svgo": "^1.1.1",
"svgo-loader": "^2.2.0",
"tailwindcss": "^1.0",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.3",
"workbox-webpack-plugin": "^4.0.0"
}
}