forked from bencompton/framework7-redux-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "framework7-react-app-template",
"version": "3.0.0",
"private": true,
"dependencies": {
"@feathersjs/client": "^3.7.5",
"feathers-offline-realtime": "^0.1.2",
"feathers-redux": "^3.0.0",
"feathers-reduxify-authentication": "^1.0.1",
"framework7": "^3.6.2",
"framework7-icons": "^0.9.1",
"framework7-react": "^3.6.2",
"framework7-redux": "^3.0.3",
"material-design-icons": "^3.0.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-multi": "^0.1.12",
"redux-persist": "^5.10.0",
"redux-promise-middleware": "^5.1.1",
"redux-thunk": "^2.3.0",
"socket.io-client": "^2.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "standard --fix",
"copy-fonts": "cpy node_modules/framework7-icons/fonts/*.* src/fonts && cpy node_modules/material-design-icons/iconfont/*.{eot,ttf,woff,woff2} src/fonts",
"postinstall": "npm run copy-fonts"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"cpy-cli": "^2.0.0",
"react-scripts": "^2.1.2",
"standard": "^12.0.1",
"sw-precache-webpack-plugin": "^0.11.5"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}