-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.03 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.03 KB
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
{
"name": "@stormid/scaffold",
"version": "1.0.0",
"description": "Static site builder and UI build system",
"scripts": {
"build": "webpack --config tools/webpack/config/build",
"ci": "webpack --config tools/webpack/config/integration",
"dev": "webpack serve --config tools/webpack/config/dev --hot",
"start": "npm run dev",
"test": "jest",
"watch": "npm run watch-dev",
"watch-dev": "webpack --config tools/webpack/config/integration --watch"
},
"author": "stormid",
"license": "MIT",
"jest": {
"transformIgnorePatterns": [],
"moduleNameMapper": {
"^@templates(.*)$": "<rootDir>/src/templates$1",
"^@layouts(.*)$": "<rootDir>/src/templates/layouts$1",
"^@components(.*)$": "<rootDir>/src/templates/components$1"
},
"testEnvironment": "jsdom"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.24.5",
"@stormid/eslint-config": "^1.0.2",
"babel-loader": "^9.1.3",
"browser-sync": "^3.0.2",
"browser-sync-v3-webpack-plugin": "^0.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.1",
"eval": "^0.1.8",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^8.0.0",
"image-minimizer-webpack-plugin": "^4.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"preact": "^10.21.0",
"preact-render-to-json": "^3.6.6",
"preact-render-to-string": "^6.4.2",
"resolve-url-loader": "^5.0.0",
"sharp": "^0.33.3",
"style-loader": "^4.0.0",
"svgo": "^3.3.2",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.2.1",
"@stormid/toggle": "^1.0.0-alpha.18"
}
}