-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.96 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
{
"name": "mini-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack/dev.config --history-api-fallback --open",
"build": "cross-env NODE_ENV=production BABEL_ENV=production webpack --progress --config webpack/prod.config -p",
"test": "jest src --no-cache --coverage",
"test:watch": "yarn test --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.52",
"@babel/core": "^7.0.0-beta.52",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.52",
"@babel/plugin-transform-runtime": "^7.0.0-beta.52",
"@babel/preset-env": "^7.0.0-beta.52",
"@babel/preset-stage-0": "^7.0.0-beta.52",
"@babel/preset-typescript": "^7.0.0-beta.52",
"@babel/runtime": "^7.0.0-beta.52",
"@types/chai": "^4.1.4",
"@types/jest": "^23.1.4",
"awesome-typescript-loader": "^5.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-loader": "8.0.0-beta.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.3.0",
"path": "^0.12.7",
"source-map-loader": "^0.2.3",
"ts-jest": "^23.0.0",
"typescript": "^3.0.0-dev.20180707",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"js",
"ts"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"^.+\\.(s)?css$": "<rootDir>/node_modules/identity-obj-proxy"
},
"globals": {
"ts-jest": {
"useBabelrc": true,
"tsConfigFile": "tsconfig.json"
}
}
}
}