forked from sodatencent/sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.19 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "Sentry",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git://github.com/getsentry/sentry.git"
},
"dependencies": {
"babel-core": "6.21.0",
"babel-gettext-extractor": "^3.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-idx": "^1.5.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-builtin-extend": "^1.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "6.20.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"bootstrap": "3.3.5",
"classnames": "2.2.0",
"compression-webpack-plugin": "^1.0.0",
"crypto-js": "3.1.5",
"css-loader": "^0.28.2",
"diff": "^3.3.0",
"enzyme-to-json": "^1.5.1",
"extract-text-webpack-plugin": "2.0.0-beta.5",
"file-loader": "0.8.4",
"gettext-parser": "1.1.1",
"history": "1.13.0",
"idx": "^1.5.0",
"ios-device-list": "^1.1.17",
"jed": "^1.1.0",
"jquery": "2.1.4",
"js-cookie": "2.0.4",
"json-loader": "0.5.3",
"less": "2.5.3",
"less-loader": "^4.0.3",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"marked": "0.3.5",
"moment": "2.10.6",
"moment-timezone": "0.4.1",
"node-libs-browser": "0.5.3",
"platformicons": "0.1.1",
"po-catalog-loader": "^1.2.0",
"prop-types": "^15.5.10",
"query-string": "2.4.2",
"raven-js": "3.16.1",
"react": "15.3.2",
"react-addons-css-transition-group": "15.3.2",
"react-addons-pure-render-mixin": "15.3.2",
"react-addons-test-utils": "15.3.2",
"react-addons-update": "15.3.2",
"react-bootstrap": "^0.29.5",
"react-code-input": "1.0.8",
"react-document-title": "1.0.4",
"react-dom": "15.3.2",
"react-icon-base": "^2.0.4",
"react-lazy-load": "3.0.10",
"react-mentions": "^1.0.0",
"react-router": "2.8.1",
"react-sparklines": "1.6.0",
"react-sticky": "5.0.4",
"reflux": "0.4.1",
"select2": "3.5.1",
"sprintf-js": "1.0.3",
"style-loader": "0.12.4",
"u2f-api": "0.0.8",
"url-loader": "0.5.6",
"webpack": "2.2.0",
"webpack-dev-middleware": "1.9.0",
"zxcvbn": "^4.4.2"
},
"private": true,
"APIMethod": "stub",
"proxyURL": "http://localhost:8000",
"scripts": {
"test": "npm run jest -- tests/js/spec",
"test-ci": "npm run test -- --runInBand",
"test-watch": "npm run test -- --watch",
"jest": "NODE_ENV=test node_modules/.bin/jest",
"lint": "node_modules/.bin/eslint tests/js src/sentry/static/sentry/app --ext .jsx",
"storybook": "start-storybook -p 9001 -c .storybook",
"snapshot": "build-storybook && PERCY_TOKEN=$STORYBOOK_PERCY_TOKEN PERCY_PROJECT=$STORYBOOK_PERCY_PROJECT percy-storybook --widths=375,1280"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/tests/js/helpers/importStyleMock.js",
"integration-docs-platforms": "<rootDir>/tests/fixtures/_platforms.json"
},
"modulePaths": [
"<rootDir>/src/sentry/static/sentry"
],
"setupFiles": [
"<rootDir>/tests/js/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/sentry/lang/javascript/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/reflux"
]
},
"devDependencies": {
"@percy-io/react-percy-storybook": "^1.0.2",
"@storybook/addon-actions": "^3.2.0",
"@storybook/addon-info": "^3.2.0",
"@storybook/addon-knobs": "^3.2.0",
"@storybook/react": "^3.2.0",
"babel-eslint": "7.1.1",
"babel-jest": "^19.0.0",
"chai": "3.4.1",
"enzyme": "2.9.1",
"eslint": "3.19.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-getsentry": "1.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "6.10.3",
"jest": "^19.0.2",
"phantomjs-prebuilt": "2.1.14",
"prettier": "1.2.2",
"sinon": "1.17.2",
"sinon-chai": "2.8.0",
"webpack-livereload-plugin": "^0.11.0"
},
"optionalDependencies": {
"fsevents": "^1.1.2"
}
}