forked from LiveDuo/destack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.68 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
{
"name": "destack-workspace",
"version": "1.0.0",
"workspaces": [
"./lib/*",
"./dev/*"
],
"scripts": {
"start": "npm run start:next",
"start:next": "cd dev/nextjs-project && npm start",
"start:react": "cd dev/react-project && npm start",
"dev": "npm run dev:next",
"dev:next": "concurrently -k \"cd lib/destack && npm run dev\" \"cd dev/nextjs-project && npm run dev\"",
"dev:react": "concurrently -k \"cd lib/destack && npm run dev\" \"cd dev/react-project && npm run dev\"",
"build": "npm run build:next",
"build:next": "cd lib/destack && npm run build && cd ../../dev/nextjs-project && npm run build",
"build:react": "cd lib/destack && npm run build && cd ../../dev/react-project && npm run build",
"test": "jest --runInBand",
"export": "cd lib/destack && npm run export",
"publish": "cd lib/destack && npm publish",
"publish:alpha": "cd lib/destack && npm run publish:alpha",
"publish:beta": "cd lib/destack && npm run publish:beta",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"concurrently": "^6.2.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "^27.0.3",
"jest-puppeteer": "^5.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"puppeteer": "^9.1.1",
"typescript": "^4.3.2"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"pretty-quick --staged",
"tsc --noEmit"
]
}
}