-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 969 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 969 Bytes
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
{
"name": "TrelloCardPrinter",
"version": "1.0.0",
"scripts": {
"flow": "flow check || exit 0",
"prettier": "prettier --write \"assets/js/**/*.{js,jsx}",
"webpack": "webpack -w --config webpack.config.js"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"flow-bin": "^0.42.0",
"jest": "^20.0.4",
"jsx-loader": "^0.13.2",
"prettier": "^1.10.2",
"react-test-renderer": "^16.0.0",
"redux-devtools": "^3.3.2",
"redux-thunk": "^2.2.0",
"webpack": "^2.5.1"
},
"dependencies": {
"moment": "^2.20.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-markdown": "^3.1.5",
"react-redux": "^5.0.3",
"react-router-dom": "^4.2.2",
"redux": "^3.6.0"
}
}