-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.73 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
{
"name": "ptz-react-test",
"version": "1.0.0",
"description": "this is a Polutz module.",
"main": "dist/index.js",
"typings": "src/index.ts",
"scripts": {
"lint": "tslint ./src/**/*.ts ./src/**/*.test.ts ./src/**/*.d.ts",
"js": "rimraf dist && tsc && babel dist -d dist --presets es2015",
"pretest": "npm-run-all --parallel js lint",
"mocha": "mocha ./dist/**/*.js --require babel-polyfill",
"test": "nyc npm run mocha && nyc report --reporter=text-lcov > coverage.lcov && codecov --token=",
"predebug": "npm run pretest",
"debug": "node --nolazy --debug-brk=5858 dist/index.js",
"start-message": "babel-node tools/startMessage.js",
"start": "npm run js && webpack && babel-node --presets es2015 dist/simpleServer.js",
"test:watch": "npm run test -- --watch",
"open:src": "babel-node tools/srcServer.js",
"front": "npm run js && webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polutz/ptz-react-test.git"
},
"author": "github.com/angeloocana",
"license": "ISC",
"bugs": {
"url": "https://github.com/polutz/ptz-react-test/issues"
},
"homepage": "https://github.com/polutz/ptz-react-test#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"codecov": "^2.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.2.0",
"ptz-assert": "^1.6.3",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"tslint": "^5.0.0",
"typescript": "^2.2.2",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/react": "^15.0.21",
"@types/react-relay": "^0.9.12",
"autoprefixer": "^6.7.7",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.3",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-relay-plugin": "^0.11.0",
"browser-sync": "^2.18.8",
"connect-history-api-fallback": "^1.3.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"url-loader": "^0.5.8",
"webpack": "^2.3.3",
"webpack-bundle-analyzer": "^2.3.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0",
"webpack-md5-hash": "0.0.5"
},
"dependencies": {
"classnames": "^2.2.5",
"flux": "^3.1.2",
"graphql-relay": "^0.5.1",
"ptz-core-domain": "^1.2.2",
"ptz-user-domain": "^1.2.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^1.3.1",
"react-relay": "^0.10.0",
"react-router": "^4.0.0"
}
}