-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 2.76 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "currency-calc-test-exercise",
"version": "1.0.0",
"description": "test exercise for job offer",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=dev node server.js",
"test": "mocha --compilers js:babel-core/register --require ./tests/test_helper.js './tests/**/*_spec.@(js|jsx)'",
"test:watch": "npm test -- --watch",
"deploy": "node build.js"
},
"dependencies": {
"classnames": "^2.2.5",
"d3": "^4.2.1",
"immutable": "^3.7.6",
"l10n": "^0.2.4",
"lodash": "^4.15.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-flip-move": "^2.4.2",
"react-motion": "^0.4.4",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.3"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-immutable": "^1.5.3",
"css-loader": "^0.23.1",
"cssnano": "^3.7.3",
"eslint": "^3.2.2",
"eslint-plugin-react": "^6.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.22.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^3.0.2",
"postcss": "^5.1.2",
"postcss-loader": "^0.9.1",
"promise": "^7.1.1",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.1.1",
"redux-devtools-dock-monitor": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.5",
"sinon": "^1.17.3",
"style-loader": "^0.13.1",
"testdom": "^2.0.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1",
"xhr2": "^0.1.3"
},
"keywords": [],
"author": "Anton Semenov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anta-semenov/currency-calc-test-exercise.git"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"stage-1",
"react"
]
},
"eslintConfig": {
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"node": true,
"jest": true,
"mocha": true
},
"parser": "babel-eslint",
"rules": {
"quotes": [
1,
"single"
],
"strict": [
2,
"never"
],
"semi": [
0,
"always"
],
"no-unused-vars": [
1
],
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"no-alert": 0
},
"extends": "eslint:recommended",
"plugins": [
"react"
]
}
}