-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.88 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
101
{
"name": "unique",
"version": "1.0.0",
"private": true,
"dependencies": {
"axios": "^0.16.2",
"graphql-request": "^1.3.4",
"history": "^4.6.3",
"locale-currency": "^0.0.2",
"lodash.debounce": "^4.0.8",
"lodash.mergewith": "^4.6.1",
"lodash.uniq": "^4.5.0",
"money": "^0.2.0",
"prop-types": "^15.5.10",
"prototypo-library": "^1.3.3",
"react": "^15.5.4",
"react-color": "^2.13.8",
"react-dom": "^15.5.4",
"react-facebook-login": "^4.0.1",
"react-flip-move": "^3.0.0",
"react-google-login": "YoruNoHikage/react-google-login",
"react-input-range": "^1.2.2",
"react-intl": "^2.4.0",
"react-perfect-scrollbar": "^1.0.0",
"react-rangeslider": "^2.2.0",
"react-redux": "^5.0.5",
"react-responsive-modal": "^2.0.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "next",
"react-router-transition": "^0.1.1",
"react-shortcuts": "^2.0.0",
"react-stripe-checkout": "^2.6.3",
"react-tap-event-plugin": "2.0.1",
"react-tippy": "^1.2.2",
"react-twitter-auth": "YoruNoHikage/react-twitter-auth",
"reactcss": "^1.2.3",
"redux": "^3.7.1",
"redux-localstorage-simple": "^1.3.1",
"redux-thunk": "^2.2.0",
"save-as": "^0.1.8",
"unorphan": "^1.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-react-intl": "^2.4.0",
"babel-preset-react-app": "^3.1.1",
"flow-bin": "^0.47.0",
"react-scripts": "2.0.0-next.b2fd8db8",
"babel-eslint": "7.2.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^2.1.2",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"prettier": "^1.10.2",
"prettier-eslint-cli": "4.7.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"flow": "flow",
"extract-messages-osx": "NODE_ENV=production babel ./src --out-file /dev/null",
"lint:files": "prettier-eslint ./src/*.js ./src/**/*.js ./src/*.jsx ./src/**/*.jsx .babelrc .eslintrc",
"lint": "npm run lint:files -- --list-different",
"format": "npm run lint -- --write",
"precommit": "lint-staged",
"extract-messages": "set NODE_ENV=production&& babel ./src > /dev/null"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"useTabs": true,
"bracketSpacing": false
},
"lint-staged": {
"stories/**": [
"prettier-eslint --write",
"git add"
],
"app/scripts/**.{js,jsx}": [
"prettier-eslint --write",
"git add"
]
}
}