-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.81 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "sinewyk-stuff",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config=./webpack.prod",
"build:test": "cross-env TESTING=true yarn build",
"analyse": "yarn build && webpack-bundle-analyzer dist/stats.json",
"analyze": "yarn analyse",
"serve": "serve dist --listen=8000 --single",
"format": "prettier --write --list-different \"./**/*.{ts,js,json,md,css}\"",
"test:dev": "cypress open",
"test": "yarn test:unit && yarn build:test && start-server-and-test serve http://localhost:8000 test:functional",
"test:unit": "yarn format && tsc",
"test:functional": "cypress run",
"watch": "cross-env NODE_ENV=development webpack serve --hot --config=./webpack.dev"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@types/history": "^4.7.9",
"@types/node": "^16.7.5",
"autoprefixer": "^10.3.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"compression-webpack-plugin": "^8.0.1",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"cssnano": "^5.0.8",
"cycle-restart": "^0.2.3",
"cypress": "^3.8.3",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"image-minimizer-webpack-plugin": "^2.2.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"markdown-loader": "^6.0.0",
"mini-css-extract-plugin": "^2.2.0",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"prettier": "^2.3.2",
"serve": "^12.0.0",
"start-server-and-test": "^1.13.1",
"style-loader": "^3.2.1",
"tailwindcss": "^2.2.8",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"@cycle/dom": "^22.8.0",
"@cycle/history": "^7.4.0",
"@cycle/run": "^5.5.0",
"assert": "^2.0.0",
"cyclejs-utils": "^4.0.2",
"lodash": "^4.17.21",
"modern-normalize": "^1.1.0",
"normalize.css": "^8.0.1",
"path-to-regexp": "^3.2.0",
"process": "^0.11.10",
"snabbdom": "^0.7.4",
"xstream": "^11.14.0"
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"semi": true,
"trailingComma": "all",
"printWidth": 100
},
"engines": {
"node": ">=16.8.0"
},
"browserslist": {
"production": [
"> 1%"
],
"development": [
"last 1 firefox version",
"last 1 chrome version"
]
}
}