-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.31 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.31 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
{
"name": "Washington",
"version": "1.0.0",
"description": "Smart Pickings UI",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --port 9292 --colors --content-base dist/bundle/",
"build:development": "webpack --config webpack.config.js",
"build:production": "webpack --config webpack.config.production.js -p",
"deploy:development": "./bin/development_deploy",
"deploy:production": "./bin/production_deploy",
"test:live": "./bin/test_deploy",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://bitbucket.org/InsertCoffee/washington"
},
"author": "Chuck J Hardy",
"license": "MIT",
"devDependencies": {
"css-loader": "^0.10.1",
"file-loader": "^0.8.1",
"jest-cli": "^0.4.0",
"jsx-loader": "^0.13.1",
"jsxhint-loader": "^0.2.0",
"react-tools": "^0.13.1",
"sass-loader": "0.3.0",
"style-loader": "^0.10.1",
"url-loader": "^0.5.5",
"webpack": "^1.8.4",
"webpack-dev-server": "^1.8.0"
},
"dependencies": {
"airbrake-js": "^0.4.0-alpha.2",
"firebase": "^2.2.4",
"flux": "^2.0.3",
"get-form-data": "^1.2.1",
"jquery": "^2.1.3",
"lodash": "^3.7.0",
"normalize.css": "^3.0.3",
"react": "^0.13.1",
"react-router": "^0.13.2"
},
"jest": {
"globals": {
"__DEV__": false,
"__TEST__": true,
"__GOOGLE_ANALYTICS_KEY__": "google-analytics-test-key",
"__FIREBASE_URL__": "firebase-test-url",
"__AIRBRAKE_PRODUCT_ID__": "airbrake-test-project-id",
"__AIRBRAKE_PRODUCT_KEY__": "airbrake-test-project-key",
"__LOCAL_STORAGE_KEY__": "localStorage-test-key",
"__LOCKDOWN_KEY__": "lockdown-test-key",
"__MAILCHIMP_API_KEY__": "mailchimp-test-api-key",
"__MAILCHIMP_LIST_ID__": "mailchimp-test-list-id"
},
"scriptPreprocessor": "<rootDir>/preprocessor",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-tools"
],
"modulePathIgnorePatterns": [
"<rootDir>/utilities/logger/airbrake",
"<rootDir>/node_modules/jquery",
"<rootDir>/node_modules/react",
"<rootDir>/support/"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"testFileExtensions": [
"js"
],
"testPathDirs": [
"<rootDir>/"
]
}
}