This repository was archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.49 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.49 KB
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
{
"name": "@teamthread/custom-react-elements",
"version": "0.1.2",
"main": "dist/custom-react-elements.js",
"umd:main": "dist/custom-react-elements.umd.js",
"license": "MIT",
"scripts": {
"example": "yarn webpack-dev-server --config example/webpack.config.js --mode development",
"build": "yarn microbundle build --external react,react-dom",
"dev-test": "yarn karma start",
"lint": "yarn eslint src tests --ext js --ext jsx",
"test": "yarn karma start --single-run",
"prepack": "yarn karma start --single-run && yarn run lint && yarn run build"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@teamthread/eslint-config-thread": "^0.1.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-unobtrusive": "^1.2.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.2.1",
"karma": "^6.3.16",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"karma-webpack": "^3.0.5",
"microbundle": "^0.13.0",
"prettier": "^1.14.3",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.1.10"
},
"resolutions": {
"js-yaml": "3.13.1"
}
}