forked from shakacode/react_on_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.98 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
{
"name": "react-on-rails",
"version": "12.0.4",
"description": "react-on-rails JavaScript for react_on_rails Ruby gem",
"main": "node_package/lib/ReactOnRails.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/plugin-transform-typescript": "^7.8.7",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/types": "^7.0.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/turbolinks": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-loader": "^8.0.2",
"babelify": "^10.0.0",
"blue-tape": "^1.0.0",
"create-react-class": "^15.6.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-shakacode": "^16.0.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.1.0",
"jest": "^25.1.0",
"jsdom": "^11.1.0",
"nps": "^5.9.3",
"prettier": "^2.0.1",
"prettier-eslint-cli": "^5.0.0",
"prop-types": "^15.5.10",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-transform-hmr": "^1.0.4",
"redux": "^4.0.1",
"release-it": "^8.2.0",
"ts-jest": "^25.2.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"webpack": "^3.4.1",
"webpack-manifest-plugin": "^1.2.1"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.9.6",
"concurrently": "^5.1.0"
},
"peerDependencies": {
"js-yaml": ">= 3.0.0",
"react": ">= 16",
"react-dom": ">= 16"
},
"files": [
"node_package/lib",
"webpackConfigLoader.js"
],
"scripts": {
"test": "jest node_package/tests",
"clean": "rm -rf node_package/lib",
"start": "nps",
"prepare": "yarn run build",
"build": "yarn run clean && yarn run tsc --declaration",
"build-watch": "yarn run clean && yarn run tsc --watch",
"lint": "nps eslint",
"check": "yarn run lint && yarn run test && yarn run type-check",
"type-check": "yarn run tsc --noEmit --noErrorTruncation",
"prerelease": "yarn run check && yarn run clean && yarn run build",
"release:patch": "node_package/scripts/release patch",
"release:minor": "node_package/scripts/release minor",
"release:major": "node_package/scripts/release major",
"dummy:install": "rake dummy_apps",
"dummy:spec": "rake run_rspec:dummy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shakacode/react_on_rails.git"
},
"keywords": [
"react",
"webpack",
"JavaScript",
"Ruby",
"on",
"Rails"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/shakacode/react_on_rails/issues"
},
"homepage": "https://github.com/shakacode/react_on_rails#readme"
}