-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.05 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.05 KB
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
{
"name": "stacktest1",
"version": "0.0.0",
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"@types/react": "^0.14.52",
"@types/react-dom": "^0.14.19",
"@types/react-router": "^2.0.41",
"babel-core": "^6.18.2",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.8",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"jest": "^17.0.3",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.0",
"source-map-loader": "^0.1.5",
"ts-loader": "^1.2.2",
"typescript": "^2.1.4",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testRegex": "/test_examples/.*\\.spec.(ts|tsx|js)$"
},
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --inline --hot",
"test": "jest"
}
}