forked from RubenVerborgh/Solid-React-Components
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.47 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
{
"name": "@solid/react",
"version": "1.9.0",
"description": "Efficiently build Solid apps and components with React",
"author": "Ruben Verborgh <[email protected]> (https://ruben.verborgh.org/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solid/react-components"
},
"main": "lib/index.js",
"module": "module/index.js",
"sideEffects": false,
"files": [
"src",
"lib",
"module",
"dist",
"!dist/demo",
".babelrc",
"webpack"
],
"dependencies": {
"@babel/runtime": "^7.1.2",
"@solid/query-ldflex": "^2.5.1",
"prop-types": "^15.6.2",
"solid-auth-client": "^2.3.0"
},
"peerDependencies": {
"react": "^16.8.4"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"copy-webpack-plugin": "^5.0.0",
"eslint": "^5.6.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^1.2.0",
"html-webpack-include-assets-plugin": "^1.0.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.2",
"jest": "^24.3.0",
"jest-dom": "3.1.2",
"jest-mock-promise": "^1.0.23",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-hooks-testing-library": "0.3.4",
"react-testing-library": "6.0.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"build": "npm run build:clean && npm run build:lib && npm run build:module && npm run build:dist && npm run build:bundle && npm run build:demo",
"build:clean": "rm -rf lib dist",
"build:lib": "babel src --out-dir lib",
"build:module": "BABEL_ENV=module babel src --out-dir module",
"build:dist": "webpack -p --config=./webpack/webpack.lib.config.js",
"build:bundle": "webpack -p --config=./webpack/webpack.bundle.config.js",
"build:demo": "webpack --config=./webpack/webpack.demo.config.js",
"jest": "jest",
"lint": "eslint --ext .js,.jsx src test demo webpack",
"prepublishOnly": "npm run build",
"start": "npm run start:demo",
"start:demo": "webpack-dev-server --config=./webpack/webpack.demo.config.js",
"test": "npm run lint && npm run jest -- --collectCoverage",
"test:dev": "npm run jest -- --watch"
}
}