-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "heisenberg",
"description": "Heisenberg - Zeek WordPress Starter Theme",
"version": "3.0.0",
"main": "main.js",
"scripts": {
"start": "cross-env NODE_ENV=development SERVER=true webpack --watch",
"watch": "cross-env NODE_ENV=development webpack --watch",
"dev": "cross-env NODE_ENV=development webpack",
"prod": "cross-env NODE_ENV=production webpack",
"build": "concurrently \"npm run prod\" \"npm run dev\""
},
"repository": {
"type": "git",
"url": "https://github.com/ZeekInteractive/heisenberg"
},
"author": "Zeek Interactive",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZeekInteractive/heisenberg/issues"
},
"homepage": "https://github.com/ZeekInteractive/heisenberg",
"dependencies": {
"foundation-sites": "^6.4.3"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"browser-sync": "^2.27.10",
"browser-sync-webpack-plugin": "^2.3.0",
"concurrently": "^7.5.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"dotenv": "^16.0.3",
"hoek": "^6.1.3",
"mini-css-extract-plugin": "^2.7.0",
"node-sass": "^8.0.0",
"postcss-loader": "^7.0.1",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11"
],
"engines": {
"node": ">=10.5.0",
"npm": ">=6.4.1"
}
}