-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.39 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
{
"name": "cssxe",
"version": "0.1.0",
"description": "A tool for live editing and syncing CSS directly from the browser to your source files",
"main": "index.jsx",
"scripts": {
"start": "NODE_ENV=production PORT=8888 node server/server.js",
"build": "vite build",
"preview": "vite preview --port 8888",
"vite-dev": "concurrently --kill-others-on-fail \"PORT=5555 vite\" \"NODE_ENV=development BROWSER_PORT=5555 nodemon server/server.js\"",
"dev": "npm run vite-dev",
"cssxe:dev": "TARGET_DIR=$TARGET_DIR npm run getTargetPort && TARGET_DIR=$TARGET_DIR npm run vite-dev",
"dev-cdp": "concurrently \"PORT=5555 npm run startRemoteChromeJs\" \"npm run vite-dev\"",
"dev-sh": "PORT=5555 npm run startRemoteChrome && npm run vite-dev",
"prod": "concurrently \"npm run build\" \"npm run start\"",
"cssxe:prod": "npm run getTargetPort && TARGET_DIR=$TARGET_DIR npm run prod",
"prod-cdp": "concurrently --kill-others-on-fail \"npm run build\" \"PORT=8888 npm run startRemoteChromeJs\" \"npm run start\"",
"prod-sh": "npm run build && PORT=8888 npm run startRemoteChromeJs && npm run start",
"startRemoteChrome": "./scripts/startRemoteChrome.sh",
"startRemoteChromeJs": "PORT=$PORT node ./scripts/startRemoteChrome.js",
"postInstall": "node ./scripts/postInstall.js",
"getTargetPort": "node ./scripts/getTargetPort.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/cssxe.git"
},
"bin": {
"remoteChrome": "startRemoteChrome.sh"
},
"keywords": [
"CSS",
"live-edit",
"web-development",
"tooling",
"devtools",
"workspace",
"source-maps"
],
"author": "pandawhale",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"chrome-dompath": "^2.0.1",
"chrome-remote-interface": "^0.33.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"nanoid": "^5.0.7",
"puppeteer": "^22.4.0",
"react-redux": "^9.1.0",
"url": "^0.11.3",
"utf8": "^3.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^5.1.4"
},
"bugs": {
"url": "https://github.com/oslabs-beta/cssxe/issues"
},
"homepage": "https://github.com/oslabs-beta/cssxe#readme"
}