-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.14 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": "typescript-webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "webpack --config ./config/webpack.prod.config.ts",
"watch": "nodemon --config ./config/nodemon.json",
"test": "jest",
"lint": "tslint --fix -c tslint.json -p ./tslint.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/enzyme": "^2.8.1",
"@types/extract-text-webpack-plugin": "^2.1.0",
"@types/html-webpack-plugin": "^2.28.0",
"@types/jest": "^20.0.2",
"@types/node": "^8.0.8",
"@types/react-hot-loader": "^3.0.3",
"@types/webpack": "^3.0.1",
"@types/webpack-dev-middleware": "^1.9.1",
"@types/webpack-hot-middleware": "^2.15.0",
"awesome-typescript-loader": "^3.2.1",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.29.0",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"react-hot-loader": "next",
"react-test-renderer": "^15.6.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"ts-jest": "^20.0.6",
"ts-node": "^3.1.0",
"tslint": "^5.5.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.4.1",
"webpack": "^3.0.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.2"
},
"dependencies": {
"@types/express": "^4.0.36",
"@types/react": "^15.0.34",
"@types/react-dom": "^15.5.1",
"core-js": "^2.4.1",
"es6-promise": "^4.1.1",
"express": "^4.15.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rimraf": "^2.6.1",
"whatwg-fetch": "^2.0.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}