-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.23 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
{
"name": "aristotl",
"version": "1.3.0",
"description": "A logical fallacy lookup tool",
"homepage": "https://www.aristotl.io",
"keywords": [
"aristotl",
"aristotle",
"logical",
"fallacy",
"fallacies",
"logic",
"reasoning"
],
"private": true,
"license": "MIT",
"scripts": {
"start": "http-server build --proxy http://localhost:${PORT:-8080}?",
"clean": "rimraf build",
"build": "npm run clean && NODE_ENV=production webpack --profile --config config/build.conf.ts",
"test": "echo \"No tests yet\"",
"dev": "cross-env NODE_ENV=development webpack-cli serve --mode development --config config/build.conf.ts",
"lint": "eslint --ext .ts --ext .tsx src config",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@types/body-scroll-lock": "^3.1.2",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/html-webpack-plugin": "^3.2.9",
"@types/is-touch-device": "^1.0.2",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.7",
"@types/node-polyglot": "^2.5.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.10",
"@types/require-dir": "^1.0.4",
"@types/styled-components": "^5.1.23",
"@types/webpack": "^5.28.5",
"@types/webpack-bundle-analyzer": "^4.6.3",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.0",
"http-server": "^14.1.1",
"react-refresh": "^0.14.0",
"require-dir": "^1.2.0",
"rimraf": "^5.0.5",
"speed-measure-webpack-plugin": "^1.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.90.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@prismicio/client": "^7.3.1",
"@prismicio/helpers": "^2.3.9",
"@prismicio/types": "^0.2.8",
"body-scroll-lock": "^3.1.5",
"core-js": "^3.35.1",
"fuse.js": "^7.0.0",
"html-react-parser": "^5.1.1",
"is-touch-device": "^1.0.1",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"node-polyglot": "^2.5.0",
"promptu": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router": "^6.21.3",
"react-router-config": "^5.1.1",
"react-router-dom": "^6.21.3",
"react-swipeable": "^7.0.1",
"react-transition-group": "^4.4.5",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"reselect": "^5.1.0",
"styled-components": "5.3.3"
}
}