-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "symfony-react-sandbox",
"version": "1.0.0",
"description": "Symfony React Sandbox",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack-serverside": "encore dev --config webpack.config.serverside.js --watch",
"webpack-dev": "encore dev-server",
"lint": "eslint assets/js",
"node-ssr-server": "node external-server.js"
},
"keywords": [
"symfony",
"react",
"jsx",
"reactjs",
"server-side",
"rendering",
"isomorphic"
],
"author": {
"name": "Nacho Martín",
"email": "[email protected]",
"url": "http://nacho-martin.com/"
},
"license": "MIT",
"dependencies": {
"bootstrap-sass": "^3.3.7",
"classnames": "^2.2.6",
"jquery": "^3.5.0",
"js-yaml": "^3.12.0",
"jwt-decode": "^2.2.0",
"liform-react": "^0.9.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"react-on-rails": "^11.2.1",
"react-redux": "^5.0.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-form": "^7.4.2",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@symfony/webpack-encore": "^0.22.2",
"babel-eslint": "^10.0.1",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"child_process": "^1.0.2",
"eslint": "^5.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"node-sass": "^4.13.1",
"prettier": "^1.15.3",
"sass-loader": "^7.1.0"
}
}