forked from mike-works/typescript-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@mike-works/typescript-fundamentals",
"version": "0.0.0-development",
"description": "Mike.Works typescript workshop",
"main": "server.js",
"repository": "https://github.com/mike-works/typescript-workshop",
"author": "Mike North <[email protected]> (https://mike.works)",
"license": "BSD-3-Clause",
"scripts": {
"clean": "scripty",
"test": "scripty",
"test:ci": "scripty",
"build:dev": "scripty",
"build:dist": "scripty",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@mike-works/workshop-semantic-release-config": "^1.0.0",
"@types/chalk": "^2.2.0",
"@types/html-webpack-plugin": "^3.0.0",
"@types/jest": "^23.3.2",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/react-hot-loader": "^4.1.0",
"@types/react-test-renderer": "^16.0.2",
"@types/webpack-env": "^1.13.6",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"babel-plugin-react-transform": "^3.0.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^1.0.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.0",
"http-proxy-middleware": "^0.19.0",
"jest": "^23.6.0",
"node-sass": "^4.9.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-render": "^1.1.1",
"react-test-renderer": "^16.5.2",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"rimraf": "^2.4.3",
"sass-loader": "^7.1.0",
"scripty": "^1.7.2",
"style-loader": "^0.23.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-microsoft-contrib": "^5.2.1",
"tslint-loader": "^3.5.3",
"tsutils": "^3.0.0",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.2",
"semantic-release": "^15.9.16"
},
"dependencies": {
"chalk": "^2.4.1"
},
"release": {
"extends": "@mike-works/workshop-semantic-release-config"
}
}