Nuxt/package.json

43 lines
1.2 KiB
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"name": "nuxt-framework",
"license": "MIT",
"workspaces": [
2021-04-20 12:16:09 +00:00
"packages/*",
2021-04-23 20:30:43 +00:00
"examples/*",
2021-04-20 12:16:09 +00:00
"docs"
2021-03-18 14:26:41 +00:00
],
"scripts": {
2021-04-09 13:48:39 +00:00
"build": "FORCE_COLOR=1 lerna run prepack --stream --no-prefix",
"stub": "lerna run prepack -- --stub",
2021-04-09 16:03:27 +00:00
"release": "yarn && yarn lint && FORCE_COLOR=1 lerna publish -m \"chore: release\" && yarn stub",
2021-04-20 12:16:09 +00:00
"docs": "yarn nu dev docs",
2021-04-04 14:22:40 +00:00
"nu": "./node_modules/.bin/nu",
"play": "yarn run nu dev playground",
2021-04-23 20:30:43 +00:00
"example": "yarn workspace example-$0 dev",
"example:build": "yarn workspace example-$0 build",
2021-04-09 13:48:39 +00:00
"lint": "eslint --ext .vue,.ts,.js .",
"test": "yarn lint && jest",
"test:compat": "TEST_COMPAT=1 jest",
"version": "yarn && git add yarn.lock"
2021-03-18 14:26:41 +00:00
},
2021-04-09 13:48:39 +00:00
"resolutions": {
"esbuild": "0.10.2"
},
2021-03-18 14:26:41 +00:00
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-config-typescript": "^6.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@types/object-hash": "^2",
"eslint": "^7.24.0",
"eslint-plugin-jsdoc": "^32.3.1",
2021-03-18 14:26:41 +00:00
"jest": "^26.6.3",
"jiti": "^1.9.1",
2021-03-18 14:26:41 +00:00
"lerna": "^4.0.0",
"object-hash": "^2.1.1",
"ts-jest": "^26.5.5",
2021-04-09 15:52:45 +00:00
"typescript": "^4.2.4",
"unbuild": "^0.2.2"
2021-03-18 14:26:41 +00:00
}
}