-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "typescript-todo",
"version": "1.0.0",
"main": "dist/bundle.js",
"repository": "[email protected]:akegan/typescript-todo.git",
"author": "Andrea Egan",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server",
"tdd": "concurrently -k 'npm run start' 'npm run watch'",
"watch": "webpack -w"
},
"dependencies": {
"lodash": "^4.17.4",
"mui-icons": "^1.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"undux": "^3.0.7"
},
"devDependencies": {
"@types/lodash": "^4.14.79",
"@types/material-ui": "^0.18.4",
"@types/react": "^16.0.18",
"@types/react-dom": "^16.0.2",
"awesome-typescript-loader": "^3.2.3",
"concurrently": "^3.5.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"material-ui": "^0.19.4",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-inline-svg": "^3.0.0",
"postcss-loader": "^2.0.8",
"postcss-svgo": "^2.1.6",
"source-map-loader": "^0.2.3",
"tslint": "^5.8.0",
"tslint-no-circular-imports": "0.2.1",
"tslint-react": "^3.2.0",
"typescript": "^2.5.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
}
}