-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.6 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
{
"name": "twisty",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --watchAll",
"start": "NODE_ENV=development webpack-dev-server --mode development --hot",
"build": "NODE_ENV=production webpack --config webpack.config.prod.js --mode production"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"bootstrap": "^4.1.1",
"dotenv-webpack": "^1.5.5",
"google-map-react": "^1.0.3",
"ramda": "^0.25.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-hot-loader": "^4.2.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"url-join": "^4.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/enzyme": "^3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/google-map-react": "^0.23.4",
"@types/jest": "^22.2.3",
"@types/ramda": "^0.25.30",
"@types/react-redux": "^6.0.0",
"@types/url-join": "^0.8.2",
"@types/uuid": "^3.4.3",
"@types/valid-url": "^1.0.2",
"awesome-typescript-loader": "^5.0.0",
"babel": "^6.23.0",
"babel-loader": "^7.1.4",
"classnames": "^2.2.5",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.0.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"postcss-loader": "^2.1.5",
"sass-loader": "^7.0.1",
"scriptjs": "^2.5.8",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"ts-jest": "^22.4.6",
"tslint-config-airbnb": "^5.9.2",
"tslint-react": "^3.6.0",
"typescript": "^2.8.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"^src/(.*)": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"setupFiles": [
"raf/polyfill"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.dev.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"setupTestFrameworkScriptFile": "<rootDir>src/setupTests.ts"
}
}