This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.03 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
{
"//": "@todo-perch",
"name": "xm_starter_perch",
"version": "1.0.0",
"description": "Starter for creating Perch CMS sites at XM Media",
"repository": {
"type": "git",
"url": "https://github.com/xmmedia/starter_perch"
},
"license": "MIT",
"//private": true,
"scripts": {
"dev": "encore dev",
"dev-server": "encore dev-server --config webpack.dev-server.config.js --hot --port 9009 --public dev.example.com: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": {
"lodash": "^4.17.11",
"register-service-worker": "^1.0.0",
"unfetch": "^4.0.1",
"vue": "^2.5.17",
"vuex": "^3.0.1"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.0.2",
"@symfony/webpack-encore": "^0.28.2",
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-e2e-cypress": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-plugin-pwa": "^4.1.2",
"@vue/cli-plugin-unit-jest": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"css-loader": "^2.1.1",
"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",
"sass-loader": "^7.1.0",
"stylelint": "^13.0.0",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-scss": "^3.3.2",
"svgo": "^1.1.1",
"svgo-loader": "^2.2.0",
"tailwindcss": "^1.2",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17",
"webpack-bundle-analyzer": "^3.0.3",
"workbox-webpack-plugin": "^4.3.1"
}
}