forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 KB
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
{
"name": "react-typescript-todomvc",
"private": true,
"version": "1.0.0",
"description": "Overmind todomvc demo",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"license": "MIT",
"repository": "git+https://github.com/cerebral/overmind.git",
"scripts": {
"start": "webpack-dev-server --port 4000 --hot",
"build": "webpack",
"test": "echo \"Error: no test specified\"",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"posttest": "npm run typecheck"
},
"keywords": [
"overmind",
"demo"
],
"dependencies": {
"@types/node": "^10.5.1",
"overmind-react": "next",
"color": "^3.0.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"styled-components": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"babel-loader": "^8.0.0-beta.4",
"source-map-loader": "^0.2.4",
"ts-loader": "^4.4.2",
"tslib": "^1.9.3",
"typescript": "^2.9.2",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8"
}
}