This repository has been archived by the owner on Jun 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.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
{
"name": "todo-mvc",
"version": "1.0.0",
"author": "Luc FASQUELLE",
"license": "MIT",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "yarn run lint",
"start": "webpack-dev-server",
"test": "jest"
},
"dependencies": {
"@types/classnames": "^2.2.0",
"@types/react": "^16.0.2",
"@types/react-dom": "^15.5.2",
"@types/react-redux": "^5.0.1",
"@types/redux": "^3.6.0",
"@types/uuid": "^3.4.1",
"classnames": "^2.2.5",
"immutable": "^3.8.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"typescript": "^2.4.2",
"uuid": "^3.1.0"
},
"devDependencies": {
"awesome-typescript-loader": "^3.2.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^20.0.4",
"node-sass": "^4.5.3",
"react-addons-test-utils": "^15.6.0",
"redux-devtools": "^3.4.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"ts-jest": "^20.0.10",
"tslint": "^5.6.0",
"tslint-react": "^3.2.0",
"webpack": "^3.5.4",
"webpack-dev-server": "^3.1.11"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(ts|tsx|js)"
]
}
}