Setup skeleton files for new front end build tool (Node, Webpack, React, Typescript)

This commit is contained in:
Ian Minoso 2016-09-27 14:06:28 -04:00
parent 8d39ed6d27
commit 9015b09026
9 changed files with 120 additions and 5 deletions

33
package.json Normal file
View file

@ -0,0 +1,33 @@
{
"name": "quay",
"license": "UNLICENSED",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "./node_modules/.bin/webpack",
"watch": "./node_modules/.bin/webpack --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/coreos-inc/quay.git"
},
"homepage": "https://github.com/coreos-inc/quay#readme",
"dependencies": {
"@types/angular": "1.5.16",
"@types/react": "0.14.39",
"@types/react-dom": "0.14.17",
"angular": "1.5.8",
"css-loader": "0.25.0",
"ngreact": "0.3.0",
"react": "15.3.2",
"react-dom": "^15.3.2",
"style-loader": "0.13.1",
"typescript": "2.0.3"
},
"devDependencies": {
"source-map-loader": "0.1.5",
"ts-loader": "0.8.2",
"typings": "1.4.0",
"webpack": "1.13.2"
}
}