This repository was archived by the owner on May 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
44
45
46
47
48
49
50
51
52
53
{
"name": "typereact",
"version": "0.1.0",
"description": "A minimal TypeScript/React/Go starter kit",
"main": "index.js",
"scripts": {
"dev": "npm i && npm link webpack && webpack && cd server && go build -o ./bin/server && ./bin/server",
"test": "npm i && npm link webpack && webpack && cd server && go test -cover && go build -o ./bin/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blinkanalytics/typereact.git"
},
"keywords": [
"TypeScript",
"React",
"Go",
"Redux",
"ReactNative"
],
"author": "Damien Stanton",
"license": "MIT",
"bugs": {
"url": "https://github.com/blinkanalytics/typereact/issues"
},
"homepage": "https://github.com/blinkanalytics/typereact#readme",
"dependencies": {
"@types/immutable": "^3.8.5",
"@types/react": "^0.14.44",
"@types/react-dom": "^0.14.18",
"immutable": "^3.8.1",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"jest-cli": "^16.0.2",
"source-map-loader": "^0.1.5",
"ts-loader": "^1.0.0",
"typescript": "^2.0.9",
"webpack": "^1.13.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}