-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 971 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 971 Bytes
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
{
"name": "wordpress.docker.starter",
"version": "1.0.0",
"description": "Start a new Wordpress Theme with Docker & Vite ",
"main": "index.js",
"repository": "git@github.com:jslyonnais/wordpress.docker.starter.git",
"author": "Jean-Simon Lyonnais <info@devjs.io>",
"license": "MIT",
"private": true,
"scripts": {
"docker": "docker-compose up",
"dev": "cross-env NODE_ENV=development vite",
"start": "concurrently \"npm run docker\" \"npm run dev\"",
"build": "vite build"
},
"dependencies": {
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"http-proxy-middleware": "^2.0.6",
"path": "^0.12.7",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"postcss-url": "^10.1.3",
"sass": "^1.63.6",
"vite": "^4.3.9",
"vite-plugin-live-reload": "^3.0.2",
"vite-plugin-static-copy": "^0.16.0",
"vite-plugin-style-import": "^2.0.0"
}
}