generated from nachocodoner/simpletasks-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.66 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
{
"name": "simpletasks",
"author": "@nachocodoner",
"version": "1.0.2",
"private": true,
"scripts": {
"start:meteor": "meteor run --exclude-archs web.browser.legacy,web.cordova",
"start:vite:client": "TARGET=client vite build --config=vite.config.js --mode=development",
"start:vite:server": "TARGET=server vite build --config=vite.config.js --mode=development",
"start:vite": "concurrently -n start:vite:client,start:vite:server \"npm run start:vite:client\" \"npm run start:vite:server\"",
"start": "npm run start:vite && concurrently -n start:meteor,start:vite:client,start:vite:server \"npm run start:meteor\" \"npm run start:vite:client -- --watch\" \"npm run start:vite:server -- --watch\"",
"build:vite:client": "TARGET=client vite build --config=vite.config.js --mode=production",
"build:vite:server": "TARGET=server vite build --config=vite.config.js --mode=production",
"build:vite": "concurrently -n build:vite:client,build:vite:server \"npm run build:vite:client\" \"npm run build:vite:server\"",
"build:meteor": "del-cli ./dist && meteor build --directory ./dist && meteor npm install --prefix ./dist/bundle/programs/server",
"build": "npm run build:vite && npm run build:meteor",
"build:force": "npm run clean && meteor npm install && npm run build",
"eslint": "eslint . --fix",
"prettier": "prettier --write \"**/*.js\" \"**/*.jsx\"",
"clean": "del-cli '.meteor/local/*' '!.meteor/local/db' && del-cli 'node_modules'",
"check": "npm run eslint && npm run prettier",
"visualize:vite": "ENABLE_BUNDLE_VISUALIZER=true npm run build:vite",
"visualize": "npm run build:vite && concurrently --raw \"npm run visualize:vite\" \"meteor --production --extra-packages bundle-visualizer\"",
"deploy": "npm run build:vite && meteor deploy"
},
"dependencies": {
"@babel/runtime": "^7.22.5",
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.7.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^2.9.11",
"@react-icons/all-files": "^4.1.0",
"bcrypt": "^5.0.1",
"framer-motion": "^6.5.1",
"history": "^5.3.0",
"meteor-node-stubs": "^1.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.44.3",
"react-router-dom": "^6.12.1",
"simpl-schema": "^1.13.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@quave/eslint-config-quave": "^1.0.7",
"@types/meteor": "^2.9.2",
"@types/mocha": "^9.1.1",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.0",
"del-cli": "^5.0.0",
"fkill-cli": "^7.1.0",
"lodash-es": "^4.17.21",
"npm-run-all": "^4.1.5",
"rollup-plugin-conditional": "^3.1.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-strip-code": "^0.2.7",
"rollup-plugin-visualizer": "^5.12.0",
"shortscale": "^4.1.1",
"vite": "^5.0.12"
},
"meteor": {
"mainModule": {
"client": "client/client.js",
"server": "server/server.js"
}
},
"husky": {
"hooks": {
"pre-commit": "meteor npm test && lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.{js|jsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"@quave/quave"
],
"settings": {
"import/resolver": {
"meteor": {
"extensions": [
".js",
".jsx"
]
}
}
}
}
}