-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.14 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
{
"private": true,
"workspaces": [
"packages/**"
],
"version": "0.0.0",
"scripts": {
"build": "yarn workspace @ambiki/impulse build",
"build:watch": "yarn workspace @ambiki/impulse build --watch",
"clean": "yarn workspace @ambiki/impulse clean",
"dev": "concurrently \"yarn build:watch\" \"yarn playground\" \"yarn docs\"",
"docs": "yarn workspace @ambiki/docs dev",
"docs:build": "yarn workspace @ambiki/docs build",
"playground": "yarn workspace @ambiki/playground dev",
"lint": "eslint 'packages/**/*.ts'",
"prettier": "prettier --write --log-level warn .",
"prettier:check": "prettier --check --log-level warn .",
"test": "yarn workspace @ambiki/impulse test",
"test:watch": "yarn workspace @ambiki/impulse test:watch"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"concurrently": "^8.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"rollup": "^3.26.2",
"typescript": "^5.1.6"
}
}