-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 900 Bytes
/
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
{
"name": "redux-react-starter",
"version": "1.0.0",
"description": "A TypeScript starter project for Redux and React 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"
],
"author": "Eric W. Greene",
"license": "MIT",
"devDependencies": {
"browser-sync": "2.16.0",
"concurrently": "2.2.0",
"json-server": "0.8.21",
"typescript": "2.0.3",
"typings": "1.4.0"
},
"dependencies": {
"react": "15.3.2",
"react-dom": "15.3.2",
"redux": "3.6.0",
"systemjs": "0.19.38"
}
}