-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.67 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.67 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
{
"name": "examples",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://examples.whatsup.js.org",
"scripts": {
"start": "cross-env ENV=development webpack serve --mode development",
"build": "cross-env ENV=production webpack --mode production",
"postbuild": "cname ./dist && cpy ./dist/index.html --rename=./404.html ./",
"deploy": "gh-pages -d ./dist",
"predeploy": "npm run build",
"postdeploy": "rimraf ./dist"
},
"dependencies": {
"whatsup": "2.3.5"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/plugin-transform-typescript": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@whatsup/babel-plugin-transform-cssx": "^2.2.36",
"@whatsup/babel-plugin-transform-jsx": "^2.2.36",
"@whatsup/typescript-plugin-cssx": "^2.2.34",
"babel-loader": "^8.2.5",
"cname": "^0.1.1",
"core-js": "^3.24.1",
"cpy-cli": "^4.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.54.1",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
}
}