-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "website-search",
"version": "1.4.11",
"private": true,
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@emotion/babel-preset-css-prop": "^10.0.14",
"@types/i18next": "^11.9.3",
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.5",
"babel-loader": "^8.0.0",
"babel-plugin-idx": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"idx": "^2.3.0",
"terser": "^3.8.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.16.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4",
"webpack-serve": "^2.0.2",
"yargs": "^12.0.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@emotion/core": "^10.0.10",
"@sajari/sdk-react": "^2.9.0",
"core-js": "3",
"cuid": "^2.1.1",
"deepmerge": "^2.1.1",
"is-plain-object": "^2.0.4",
"pubsub-js": "^1.6.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"regenerator-runtime": "^0.13.3",
"stackqueue": "^1.0.2"
},
"scripts": {
"build": "webpack --config config/webpack.config.js --mode production",
"build:dev": "webpack --config config/webpack.config.js --mode development",
"analyze": "webpack --config config/webpack.analyze.js --mode production",
"start": "webpack-serve --config ./config/webpack.dev.js",
"lint": "tslint -p tsconfig.json -c tslint.json --fix \"src/**/*.{ts,tsx}\"",
"type-check": "tsc --noEmit"
},
"volta": {
"node": "12.13.0",
"yarn": "1.19.1"
}
}