-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1011 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1011 Bytes
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
{
"name": "typescript_react_redux_webinar",
"version": "1.0.0",
"description": "A TypeScript starter project for React and Redux applications.",
"scripts": {
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run web\" \"npm run rest\" ",
"web": "browser-sync start --server --files \"index.html\" \"styles.css\" \"js\" --no-inject-changes",
"postinstall": "typings install",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings",
"rest": "json-server --watch --port 3010 db.json"
},
"keywords": [
"redux",
"react",
"typescript",
"react-redux",
"thunk",
"middleware"
],
"author": "Eric W. Greene",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.16.0",
"concurrently": "^3.1.0",
"json-server": "^0.9.4",
"tslint": "^4.2.0",
"typescript": "^2.0.3",
"typings": "^2.1.0"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2",
"redux": "^3.6.0",
"systemjs": "^0.19.38"
}
}