-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.81 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
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
{
"name": "react-pearl",
"version": "1.0.0",
"description": "An React Scaffold featuring React (Tests, Dev/Prod), Visual Basic 6.0, Mocha, NYC, TypeScript, TsLint, and Webpack2 by @ngParty Team",
"main": "index.js",
"config": {
"dockerScope": "ngparty",
"port": 8081
},
"scripts": {
"pretest": "npm run lint",
"test": "mocha --require config/setup-browser-env --watch-extensions tsx,ts --colors src/**/*.spec.ts*",
"test:watch": "npm run test -- --watch",
"cover": "nyc npm run test",
"cover:watch": "nodemon --quiet --watch src --ext ts,tsx --exec npm run cover",
"check-coverage": "nyc --check-coverage --statements 80 --branches 80 --functions 80 --lines 80 npm test",
"lint": "tslint \"src/**/*.tsx\" \"src/**/*.ts\" --exclude \"src/**/*.d.ts\"",
"start": "webpack-dev-server --env.dev --hot",
"build": "npm run check-coverage && rimraf dist && webpack --env.prod",
"serve:prod": "static -p 8081 -a 0.0.0.0 -H '{\"Access-Control-Allow-Origin\": \"*\"}' dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngParty/React-scaffold.git"
},
"keywords": [
"react",
"typescript",
"webpack2",
"ava"
],
"author": "@ngPartyCz",
"license": "ISC",
"bugs": {
"url": "https://github.com/ngParty/React-scaffold/issues"
},
"homepage": "https://github.com/ngParty/React-scaffold#readme",
"nyc": {
"reporter": [
"lcov",
"text",
"html"
],
"extension": [
".tsx",
".ts"
],
"exclude": [
"**/*.spec.ts",
"**/*.spec.tsx"
],
"include": [
"src/**"
]
},
"devDependencies": {
"@types/chai": "3.4.30",
"@types/enzyme": "2.4.30",
"@types/mocha": "2.2.29",
"@types/react-addons-test-utils": "0.14.14",
"@types/sinon": "1.16.26",
"awesome-typescript-loader": "2.2.3",
"chai": "3.5.0",
"css-loader": "0.23.1",
"enzyme": "2.4.1",
"extract-text-webpack-plugin": "2.0.0-beta.3",
"html-webpack-plugin": "2.22.0",
"image-webpack-loader": "3.0.0",
"jsdom": "9.4.1",
"mocha": "3.0.1",
"node-static": "0.7.9",
"nodemon": "1.10.0",
"nyc": "7.1.0",
"postcss-cssnext": "2.7.0",
"postcss-loader": "0.9.1",
"progress-bar-webpack-plugin": "1.9.0",
"react-addons-test-utils": "15.3.0",
"rimraf": "2.5.4",
"sinon": "1.17.5",
"style-loader": "0.13.1",
"ts-node": "1.2.2",
"tslint": "3.14.0",
"tslint-react": "0.4.0",
"typescript": "2.0.2",
"webpack": "2.1.0-beta.25",
"webpack-config-utils": "2.0.0",
"webpack-dev-server": "2.1.0-beta.8"
},
"dependencies": {
"@types/react": "0.14.33",
"@types/react-dom": "0.14.16",
"@types/react-router": "2.0.33",
"app-shell-toolbox": "1.0.0",
"react": "15.3.0",
"react-dom": "15.3.0",
"react-router": "2.6.1"
}
}