-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
46 lines (46 loc) · 1.36 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": "uvue",
"description": "Universal Vue - SSR (Server side rendered) for Vue CLI with ease",
"repository": "https://github.com/universal-vue/uvue",
"author": "Simon Babay <simon@babay.fr>",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf packages/tests",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"format": "lerna run format",
"test": "./tests/cli install suite && ./tests/cli test suite",
"test:win": "node tests/cli install suite && node tests/cli test suite",
"postinstall": "node scripts/postinstall.js",
"pub": "yarn clean && lerna publish"
},
"workspaces": [
"packages/@uvue/*",
"packages/tests/*"
],
"devDependencies": {
"@vue/babel-preset-app": "^4.2.3",
"@vue/cli": "^4.2.3",
"@vue/cli-plugin-typescript": "^4.2.3",
"@vue/cli-test-utils": "^4.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"cheerio": "^1.0.0-rc.2",
"deepmerge": "^2.1.1",
"execa": "^1.0.0",
"fs-extra": "^7.0.0",
"jest": "^24.9.0",
"jest-puppeteer": "^3.3.1",
"lerna": "^3.1.4",
"node-mocks-http": "^1.7.0",
"puppeteer": "^1.7.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.6.2",
"serve": "^10.0.2",
"vue-template-compiler": "^2.6.2",
"wait-on": "^2.1.0",
"yargs": "^12.0.1"
}
}