This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@variate/react",
"version": "3.0.1",
"description": "Variate React Plugin",
"license": "BSL 1.1",
"author": "Thomas Davis <[email protected]>",
"main": "./dist/variate-react.min.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint ./src --ext .ts,.tsx,.jsx,.js",
"start": "webpack-dev-server --mode development --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"release": "standard-version"
},
"files": [
"dist"
],
"dependencies": {
"@variate/engine": "^3.2.2",
"react": "^16.12.0"
},
"peerDependencies": {
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/preset-env": "^7.9.5",
"@babel/preset-stage-2": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^3.5.2",
"cz-conventional-changelog": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"history": "^4.10.1",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint": "^0.7.0",
"lint-staged": "^10.2.2",
"react": "^16.13.1",
"react-dom": "^16.3.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"standard-version": "^7.1.0",
"style-loader": "^1.1.3",
"styled-components": "^5.1.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"setupFiles": [
"<rootDir>/jestSetup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/jestPreprocessor.js"
},
"testMatch": [
"**/*.test.(ts|tsx|js)"
]
},
"keywords": [
"ab-testing",
"variate"
],
"bugs": {
"url": "https://github.com/variateapp/variate-react/issues"
},
"homepage": "https://github.com/variateapp/variate-react#README.md",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,jsx,js}": "eslint --cache --fix"
}
}