-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
74 lines (74 loc) · 1.97 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
{
"name": "ta-station-finder",
"version": "0.1.1",
"description": "",
"main": "dev.server.js",
"scripts": {
"start": "cross-env NODE_ENV=dev node dev.server.js",
"build": "cross-env NODE_ENV=prod webpack",
"test": "jest",
"lint": "tslint 'src/**/*.{ts,tsx}'"
},
"author": "Alexandre Rieux",
"license": "ISC",
"jest": {
"transform": {
"^.+\\.tsx$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"setupFiles": [
"<rootDir>/jest-prevent-css-injection.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
},
"devDependencies": {
"@types/jest": "^21.1.8",
"@types/moment": "^2.13.0",
"@types/react": "^16.0.26",
"@types/react-addons-test-utils": "^0.14.17",
"@types/react-dom": "^16.0.3",
"@types/react-redux": "^5.0.14",
"@types/react-router-dom": "^4.0.5",
"@types/redux-logger": "^3.0.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.2.0",
"jest-cli": "^21.2.1",
"qs": "^6.5.1",
"react-addons-test-utils": "^15.4.2",
"react-router-dom": "^4.1.1",
"react-transform-hmr": "^1.0.4",
"style-loader": "^0.19.0",
"ts-jest": "^21.2.4",
"ts-loader": "^3.2.0",
"tslint": "^5.5.0",
"tslint-loader": "^3.4.2",
"tslint-react": "^3.0.0",
"typescript": "^2.4.1",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.4.1",
"whatwg-fetch": "^2.0.2"
},
"dependencies": {
"mapbox-gl": "^0.42.2",
"moment": "^2.19.4",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-datepicker": "^0.64.0",
"react-dom": "^16.2.0",
"react-mapbox-gl": "^3.2.1",
"react-redux": "^5.0.3",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"styled-components": "^2.2.4"
}
}