-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "react-typescript-boilerplate",
"version": "1.0.0",
"description": "",
"private": true,
"main": "app/index.tsx",
"scripts": {
"start": "tscomp start",
"build": "tscomp build",
"test": "tscomp test",
"lint": "tslint `find src -name '*.ts' -o -name '*.tsx'`",
"build:translations": "node build-translations.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beanloop/react-typescript-boilerplate.git"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/enzyme": "^2.7.9",
"@types/jest": "^19.2.2",
"@types/node": "^6.0.69",
"@types/react": "^15.0.22",
"@types/react-dom": "^0.14.23",
"@types/react-intl": "^2.2.6",
"@types/recompose": "^0.22.0",
"@types/webpack": "^2.2.15",
"babel-plugin-react-intl": "^2.3.1",
"babel-preset-env": "^1.4.0",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"glob": "^7.1.1",
"tscomp": "0.9.0",
"tslint": "^5.1.0",
"tslint-config-beanloop": "^0.1.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-intl": "^2.2.3",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"recompose": "^0.23.1",
"redux": "^3.6.0",
"styled-components": "^1.4.5"
}
}