-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.1 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
{
"name": "capybara-router",
"version": "2.12.0",
"description": "Unfancy react router without flux and redux.",
"main": "index.js",
"scripts": {
"start": "concurrently --kill-others \"nodemon example/server.js --watch example/server.js\" \"webpack serve\"",
"eslint": "eslint ./ --ignore-path .gitignore --ignore-pattern 'example/web.js'",
"build": "NODE_ENV=production webpack",
"changelog": "node_modules/conventional-changelog-cli/cli.js -n node_modules/@kelp404/changelog.config",
"ncu": "npm-check-updates",
"test": "jest --coverage",
"coveralls": "coveralls < ./coverage/lcov.info"
},
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kelp404/capybara-router.git"
},
"keywords": [
"react",
"router"
],
"author": "Kelp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kelp404/capybara-router/issues"
},
"homepage": "https://github.com/kelp404/capybara-router#readme",
"dependencies": {
"history": "5.3.0",
"prop-types": "15.8.1",
"query-string": "7.1.1",
"react": "17.0.2"
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/eslint-parser": "7.18.9",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.18.10",
"@babel/preset-react": "7.18.6",
"@kelp404/changelog.config": "0.1.0",
"axios": "0.27.2",
"babel-loader": "8.2.5",
"classnames": "2.3.1",
"concurrently": "7.2.2",
"config": "3.3.7",
"conventional-changelog-cli": "2.2.2",
"coveralls": "3.1.1",
"eslint": "8.22.0",
"eslint-config-xo": "0.40.0",
"eslint-config-xo-react": "0.27.0",
"eslint-config-xo-space": "0.32.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-react": "7.31.1",
"eslint-plugin-react-hooks": "4.6.0",
"express": "4.18.1",
"jest": "28.1.3",
"nodemon": "2.0.16",
"npm-check-updates": "14.0.1",
"nprogress": "0.2.0",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.2"
}
}