-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.55 KB
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
{
"name": "fixer-react",
"version": "1.0.0",
"description": "React SPA that displays a summary of FX rates using fixer.io",
"main": "src/index.js",
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browser-sync": "^2.23.5",
"browserify": "^15.2.0",
"envify": "^4.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"fusioncharts": "^3.12.2",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.9.2",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.2.0",
"gulp-html-replace": "^1.6.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^1.12.1",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.0",
"jest": "^22.1.4",
"jest-cli": "^22.1.4",
"pump": "^2.0.1",
"react-fusioncharts": "^1.0.4",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.10.0"
},
"babel": {
"presets": [
"react",
"env"
]
},
"jest": {
"roots": [
"app"
]
},
"scripts": {
"test": "jest --watch",
"start": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EByrdS/fixer-react.git"
},
"keywords": [
"react",
"jest",
"sass",
"tdd",
"spa"
],
"author": "Emmanuel Byrd",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/EByrdS/fixer-react/issues"
},
"homepage": "https://github.com/EByrdS/fixer-react#readme"
}