-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 835 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 835 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
{
"name": "react-typescript",
"version": "1.0.0",
"description": "Minimal boilerplate for a single-page app using React, TypeScript with JSX (TSX), and Visual Studio Code.",
"repository": "bvanreeven/react-typescript",
"main": "index.js",
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"@types/react": "^0.14.39",
"@types/react-dom": "^0.14.17",
"concurrently": "^3.1.0",
"mkdirp": "^0.5.1",
"source-map-loader": "^0.1.5",
"ts-loader": "^0.9.0",
"typescript": "^2.0.3",
"webpack": "^1.13.2"
},
"scripts": {
"build": "webpack",
"start": "http-server",
"dev": "concurrently --kill-others --prefix [{name}] --names WEBPACK,HTTP \"webpack -wd --colors\" \"http-server\""
},
"author": "Benny van Reeven",
"license": "MIT"
}