-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.02 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
{
"name": "@nemo.travel/search-widget",
"version": "1.5.3",
"description": "Lightweight form for searching airtickets",
"main": "dist/flights.search.widget.min.js",
"scripts": {
"eslint": "eslint . --ext .jsx,.jsx",
"server": "node server.js",
"build": "npm run eslint && cross-env NODE_ENV=production webpack",
"build-dev": "cross-env NODE_ENV=dev webpack",
"dev": "run-p build-dev server",
"prepublish": "npm run eslint && npm run test && npm run build",
"test": "jest",
"start": "npm run server"
},
"pre-commit": [
"eslint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NemoTravel/flights.search.widget.git"
},
"author": "Paul Naumov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NemoTravel/flights.search.widget/issues"
},
"homepage": "https://github.com/NemoTravel/flights.search.widget#readme",
"devDependencies": {
"@nemo.travel/why-did-you-update": "0.0.8",
"autoprefixer": "^7.1.3",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"compression": "^1.7.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-plugin-react": "^7.4.0",
"express": "^4.15.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"jest": "^21.2.0",
"node-sass": "^4.6.1",
"npm-run-all": "^4.1.2",
"opn": "^5.1.0",
"postcss-loader": "^2.0.6",
"pre-commit": "^1.2.2",
"redux-logger": "^3.0.6",
"redux-testkit": "^1.0.6",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5"
},
"dependencies": {
"@nemo.travel/react-datepicker": "^0.57.2",
"@nemo.travel/react-select": "^1.0.6",
"autobind-decorator": "^2.1.0",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.0.0-beta",
"classnames": "^2.2.5",
"ismobilejs": "^0.4.1",
"js-cookie": "^2.1.4",
"moment": "^2.19.2",
"promise-polyfill": "^6.0.2",
"prop-types": "^15.6.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-onclickoutside": "^6.7.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"whatwg-fetch": "^2.0.3"
},
"jest": {
"modulePaths": [
"/src"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {}
}
}