-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "toolkit-starter",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"tsc": "tsc",
"tsc:w": "tsc -w",
"start": "webpack --config ./scripts/webpack.config.js",
"start:dev": "webpack-dev-server --config ./scripts/webpack.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "15.4.2",
"react-dom": "15.4.2"
},
"devDependencies": {
"@types/enzyme": "^2.7.7",
"@types/jest": "^19.2.2",
"@types/react": "15.0.21",
"@types/react-dom": "0.14.23",
"enzyme": "^2.8.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"react-addons-test-utils": "^15.4.2",
"ts-loader": "^2.0.3",
"typescript": "2.2",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/scripts/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(ts|tsx|js)"
]
}
}