forked from JetBrains/kotlin-web-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.83 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "kotlinlang.org",
"version": "0.0.0",
"description": "kotlinlang.org site",
"license": "Apache-2.0",
"browserslist": [
"defaults, not ie > 0, edge > 18"
],
"dependencies": {
"@babel/core": "7.15.8",
"@babel/register": "7.15.3",
"@jetbrains/babel-preset-jetbrains": "^2.3.1",
"@jetbrains/kotlin-web-site-ui": "4.4.7",
"@react-hook/resize-observer": "1.2.5",
"@rescui/button": "0.4.0",
"@rescui/card": "0.5.0",
"@rescui/checkbox": "0.1.0",
"@rescui/colors": "0.0.4",
"@rescui/dropdown-menu": "0.2.4",
"@rescui/focus-manager": "0.1.1",
"@rescui/icons": "^0.8.2",
"@rescui/input": "^0.4.6",
"@rescui/switcher": "0.2.1",
"@rescui/tab-list": "0.3.0",
"@rescui/tag": "0.3.0",
"@rescui/tooltip": "0.1.3",
"@rescui/typography": "^0.7.3",
"@rescui/ui-contexts": "0.1.3",
"@rollup/plugin-buble": "0.21.3",
"algoliasearch": "4.10.2",
"autoprefixer": "10.3.2",
"babel-loader": "^8.2.3",
"babel-plugin-transform-import-ignore": "1.1.0",
"body-scroll-lock": "4.0.0-beta.0",
"classnames": "2.3.1",
"codemirror": "5.61.0",
"core-js": "3.19.0",
"css-loader": "5.2.6",
"csso-webpack-plugin": "2.0.0-beta.1",
"debounce": "1.0.2",
"event-emitter": "0.3.4",
"extend": "3.0.2",
"file-loader": "6.2.0",
"formik": "2.2.9",
"google-map-react": "2.1.10",
"inter-ui": "3.19.3",
"iso-639-1": "2.1.13",
"jquery": "3.5.0",
"kotlin-playground": "^1.27.0",
"mini-css-extract-plugin": "1.6.1",
"mini-svg-data-uri": "1.1.3",
"nanoid": "3.3.3",
"node-sass": "7.0.1",
"normalize.css": "8.0.1",
"postcss-custom-properties": "11.0.0",
"postcss-font-smoothing": "0.1.0",
"postcss-loader": "6.1.1",
"query-string": "3.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-outside-click-handler": "1.3.0",
"react-remove-scroll-bar": "2.3.4",
"react-scrollbar-size": "5.0.0",
"react-swipeable-views": "0.14.0",
"resolve-url-loader": "4.0.0",
"rollup": "2.47.0",
"sass-loader": "12.1.0",
"sha.js": "^2.4.11",
"svgo": "2.7.0",
"svgo-loader": "3.0.0",
"tslib": "2.2.0",
"url-loader": "^4.0.0",
"validator": "13.7.0",
"webpack": "5.40.0",
"webpack-cli": "4.7.2",
"whatwg-fetch": "2.0.2"
},
"devDependencies": {
"@playwright/test": "1.22.2",
"@types/react": "17.0.43",
"eslint": "8.14.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.5.0",
"next": "12.1.4",
"next-compose-plugins": "2.2.1",
"next-global-css": "1.3.1",
"next-optimized-images": "3.0.0-canary.10",
"next-transpile-modules": "9.0.0",
"prettier": "2.6.2",
"start-server-and-test": "1.14.0",
"typescript": "4.6.3",
"webpack-dev-server": "4.3.1",
"yaml-loader": "0.7.0"
},
"scripts": {
"build": "yarn run build:production && yarn run next-build-static",
"build:production": "NODE_ENV=production webpack --mode production",
"postinstall": "cd node_modules/codemirror && rollup -c",
"start": "webpack serve",
"next-dev": "next dev",
"next-build-static": "next build && next export",
"lint": "next lint",
"test": "playwright test test",
"test:e2e:ci": "CI=true playwright test test/e2e",
"test:e2e": "playwright test test/e2e",
"test:e2e:headed": "playwright test test/e2e --headed --project=chromium",
"test:e2e:debug": "PWDEBUG=1 playwright test test/e2e --project=chromium",
"test:e2e:new": "playwright codegen localhost:9001",
"test:visual": "playwright test test/visual",
"test:visual:headed": "playwright test test/visual --headed",
"test:visual:update": "playwright test test/visual --update-snapshots",
"test:visual:ci": "CI=true playwright test test/visual",
"сi:e2e:prod": "CI=true BASE_URL=https://kotlinlang.org playwright test test/e2e"
}
}