forked from fictionco/fiction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·116 lines (116 loc) · 4.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@factor/wrapper",
"author": "Fiction.com <[email protected]> (https://www.fiction.com)",
"version": "1.5.7",
"repository": {
"type": "git",
"url": "git+https://github.com/fiction-com/factor.git"
},
"workspaces": [
"@apps/*",
"@examples/*",
"@plugins/*",
"@themes/*",
"@examples/*",
"@factor/*",
"@demo/*",
"**/fixtures/*",
"test/builds/*",
"test/modules/*"
],
"private": true,
"license": "GPL-2.0",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "standard-version",
"loader:dev": "yarn workspace @factor/loader poi --serve --debug",
"loader:build": "yarn workspace @factor/loader poi --prod --watch",
"packages:upgrade": "yarn install && yarn upgrade && yarn audit && yarn outdated",
"version:patch": "yarn lerna version patch --yes",
"apps:version": "yarn workspace @apps/fiction version --patch --no-git-tag-version && yarn workspace @apps/factor version --patch --no-git-tag-version",
"push:staging": "git checkout staging && git rebase development && git push --no-verify && git checkout development",
"push:release": "yarn push:staging && git checkout release && git rebase staging && git push --no-verify && git checkout development",
"clean-logs": "find . -name '*.log' -delete",
"publish:apps": "yarn publish:docs && yarn publish:fiction",
"publish:docs": "heroku git:remote -a factor-dev && git push heroku master",
"publish:fiction": "heroku git:remote -a fiction-com && git push heroku master",
"prep": "git pull && cd @fiction && git pull && cd ../ && yarn install --ignore-engines",
"heroku-postbuild": "node ./@apps/heroku/build-heroku.js",
"deploy": "git push heroku-factor-dev master",
"test:watch": "yarn jest @factor/**/test/unit --watch",
"test:all": "yarn test:fixtures && yarn test:unit",
"test:lint": "yarn test:eslint && yarn test:types",
"test:eslint": "eslint --ext .ts,.js,.vue,.json .",
"test:coverage": "codecov",
"test:unit": "jest @factor/**/test/unit --forceExit --detectOpenHandles",
"test:fixtures": "yarn test:builds && yarn test:integration",
"test:builds": "jest test/builds --forceExit",
"test:staging": "jest test/staging --forceExit && cypress run",
"test:integration": "jest test/integration --forceExit",
"test:dev-unit": "node --inspect node_modules/.bin/jest @factor/**/test/unit --runInBand",
"test:dev-integration": "node --inspect node_modules/.bin/jest test/integration --runInBand",
"test:types": "tsc --skipLibCheck",
"test:e2e": "cypress run",
"test:cfa": "yarn sao ./@factor/create-factor-app"
},
"gitHooks": {
"pre-push": "git pull && yarn test:lint && yarn test:unit",
"commit-msg": "node scripts/verify-commit.js"
},
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@cypress/webpack-preprocessor": "^5.1.1",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.0",
"@types/webpack-env": "^1.14.1",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"@vue/server-test-utils": "^1.0.0-beta.29",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-jest": "^26.0.0",
"codecov": "^3.6.1",
"consola": "^2.10.1",
"conventional-changelog-cli": "^2.0.31",
"cypress": "^4.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-cypress": "^2.7.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.1",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-unicorn": "^21.0.0",
"eslint-plugin-vue": "^6.0.0",
"esm": "^3.2.25",
"execa": "^4.0.0",
"exit": "^0.1.2",
"jest": "^26.0.0",
"jest-junit": "^10.0.0",
"jsdom": "^16.0.0",
"lerna": "^3.13.0",
"mongodb-memory-server": "^6.0.1",
"poi": "^12.7.5",
"prettier": "^2.0.4",
"prettier-eslint": "^9.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"standard-version": "^8.0.0",
"std-env": "^2.2.1",
"ts-jest": "^26.0.0",
"typescript": "^4.0.0",
"vue": "^2.6.10",
"vue-jest": "^4.0.0-beta.2",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.29.6",
"yorkie": "^2.0.0"
},
"devDependencies": {}
}