-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "@the-control-group/react-split-test",
"version": "2.0.0",
"description": "A/B Split Testing Component for React",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "npm test && npm run build",
"start": "webpack serve --mode development",
"build": "tsc",
"test": "tsc --noEmit && eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-control-group/react-split-test.git"
},
"keywords": [
"react",
"split",
"test",
"conversion",
"optimization"
],
"author": "The Control Group",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/the-control-group/react-split-test/issues"
},
"homepage": "https://github.com/the-control-group/react-split-test#readme",
"devDependencies": {
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^9.0.0",
"html-webpack-plugin": "^5.5.3",
"npm-check-updates": "^16.14.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"react": ">=17"
}
}