-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.07 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
75
76
77
{
"name": "webpacking-heat",
"version": "1.0.0",
"description": "playing with webpack",
"main": "index.js",
"scripts": {
"build": "npm-run-all lint bundle",
"bundle": "webpack",
"lint": "npm-run-all -p lint:ts lint:style",
"lint:style": "stylelint -s scss 'src/**/*.scss'",
"lint:ts": "tslint -c tslint.json 'src/**/*.ts*'",
"test": "jest",
"webpackServer": "webpack-dev-server --content-base build"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/test/src/.*Tests\\.(ts|tsx)$"
},
"keywords": [
"webpack"
],
"author": "James Ross",
"license": "ISC",
"dependencies": {
"@blueprintjs/core": "3.2.0",
"@blueprintjs/datetime": "3.1.0",
"@blueprintjs/icons": "3.0.0",
"@blueprintjs/select": "3.1.0",
"@types/react-redux": "5.0.14",
"@types/redux-thunk": "2.1.0",
"classnames": "2.2.5",
"prop-types": "15.6.0",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-redux": "5.0.7",
"react-transition-group": "2.4.0",
"redoodle": "2.2.2",
"redux": "4.0.0",
"redux-thunk": "2.3.0",
"typescript": "2.7.2"
},
"devDependencies": {
"@types/chai": "4.1.0",
"@types/classnames": "2.2.3",
"@types/jest": "22.0.1",
"@types/prop-types": "15.5.2",
"@types/react": "16.0.34",
"@types/react-addons-css-transition-group": "15.0.3",
"@types/react-dom": "16.0.3",
"@types/react-redux": "5.0.14",
"awesome-typescript-loader": "3.4.1",
"chai": "4.1.2",
"css-loader": "0.28.8",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.6",
"html-webpack-plugin": "2.30.1",
"jest": "22.0.4",
"node-sass": "4.7.2",
"npm-run-all": "4.1.2",
"sass-loader": "6.0.6",
"style-loader": "0.19.1",
"stylelint": "8.4.0",
"stylelint-config-standard": "18.0.0",
"ts-jest": "22.0.1",
"tslint": "5.8.0",
"typescript": "2.6.2",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7"
}
}