-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·99 lines (99 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·99 lines (99 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-responsive-seed",
"version": "0.0.1",
"description": "React Web App Seed including TypeScript, responsive Material UI and Routing",
"main": "index.js",
"scripts": {
"fuse": "node -r ts-node/register fuse.ts",
"start": "npm run fuse -- serve dev ${PORT=4444}",
"prod": "npm run fuse -- serve prod",
"build": "npm run fuse -- build prod",
"build:qa": "npm run fuse -- build qa",
"test": "mocha",
"lint": "tslint 'src/**/*.ts' 'src/**/*.tsx'",
"cover": "nyc mocha"
},
"author": "Albert Lochmueller",
"license": "ISC",
"dependencies": {
"@types/history": "^4.6.2",
"@types/react-select": "^1.1.0",
"axios": "^0.16.1",
"classnames": "^2.2.5",
"history": "^4.7.2",
"material-ui": "^1.0.0-beta.26",
"material-ui-icons": "^1.0.0-beta.17",
"query-string": "^5.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-select": "^1.2.0",
"react-toastify": "^3.1.0",
"react.di": "^2.0.0-beta.3",
"reflect-metadata": "^0.1.10",
"sha.js": "^2.4.9",
"spectre.css": "^0.2.14",
"typestyle": "^1.5.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.0.6",
"@types/classnames": "^0.0.32",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.18",
"@types/query-string": "^5.0.1",
"@types/react": "^16.0.22",
"@types/react-dom": "^16.0.3",
"@types/react-router": "^4.0.17",
"@types/sinon": "^2.3.1",
"@types/sinon-chai": "^2.7.28",
"chai": "^4.0.2",
"cpr": "^2.0.2",
"enzyme": "^3.1.1",
"fuse-box": "2.0.0",
"jsdom": "^11.5.1",
"mocha": "^3.4.2",
"node-sass": "^4.5.2",
"nyc": "^11.4.0",
"rimraf": "^2.6.1",
"sinon": "^2.3.4",
"sinon-chai": "^2.11.0",
"source-map-support": "^0.4.15",
"ts-node": "^3.0.6",
"tslint": "^5.2.0",
"typescript": "^2.6.2",
"uglify-js": "^2.8.22"
},
"nyc": {
"lines": 85,
"statements": 85,
"functions": 85,
"branches": 85,
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"src/**/*.spec.ts",
"src/**/*.spec.tsx"
],
"reporter": [
"lcov",
"text-summary"
],
"extension": [
".ts",
".tsx"
],
"sourceMap": true,
"instrument": true,
"cache": true,
"all": true,
"check-coverage": true,
"report-dir": "./coverage"
},
"directories": {
"test": "test"
}
}