-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.36 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.36 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"private": true,
"name": "inventoryexp_2015",
"subdomain": "testing",
"version": "0.0.0-1",
"description": "A starter project for AngularJS",
"repository": "https://github.com/angular/angular-seed",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "BUILD_DEV=1 BUILD_STAGING=1 ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "./node_modules/jest-cli/bin/jest.js",
"deploy": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js -p --progress --profile --colors",
"deploys": "NODE_ENV=production BUILD_STAGING=1 ./node_modules/webpack/bin/webpack.js -p --progress --profile --colors",
"lint": "./node_modules/eslint/bin/eslint.js"
},
"devDependencies": {
"babel-core": "^5.8.33",
"babel-eslint": "^4.1.3",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.3",
"babel-polyfill": "^6.0.2",
"babel-runtime": "6.0.12",
"css-loader": "^0.21.0",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.5.1",
"express": "^4.13.3",
"file-api": "^0.10.4",
"file-loader": "^0.8.4",
"form-data": "^0.2.0",
"html-webpack-plugin": "^1.6.1",
"immutable": "^3.7.4",
"jest-cli": "^0.5.10",
"node-bourbon": "^4.2.3",
"node-libs-browser": "^0.5.2",
"node-sass": "^3.2.0",
"react-hot-loader": "^2.0.0-alpha-2",
"sass-loader": "^3.1.0",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.12.1",
"webpack-merge": "^0.1.3"
},
"dependencies": {
"animate.css": "^3.4.0",
"array.prototype.findindex": "^1.0.0",
"babyparse": "^0.4.3",
"chart.js": "^1.0.2",
"classnames": "^2.2.0",
"es6-promise": "^3.0.2",
"eslint": "^1.7.3",
"eslint-config-airbnb": "^0.1.1",
"eslint-plugin-react": "^3.8.0",
"fixed-data-table": "^0.5.0",
"font-awesome": "^4.4.0",
"font-awesome-webpack": "0.0.4",
"form-data": "^1.0.0-rc3",
"history": "^1.12.4",
"html-webpack-plugin": "^1.6.2",
"immutable": "^3.7.4",
"isomorphic-fetch": "^2.2.0",
"jquery": "^2.1.4",
"json-loader": "^0.5.3",
"less": "^2.5.3",
"lodash": "^3.10.1",
"moment": "^2.13.0",
"node-uuid": "^1.4.3",
"normalize-css": "^2.3.1",
"pikaday": "^1.4.0",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-highlighter": "^0.2.2",
"react-hot-loader": "^1.3.0",
"react-infinite": "^0.7.1",
"react-rating": "^0.2.2",
"react-redux": "^4.0.0",
"react-router": "^1.0.0-rc3",
"react-timeout": "^0.16.0",
"redux": "^3.0.4",
"redux-form": "^2.4.5",
"redux-localstorage": "^0.4.0",
"redux-thunk": "^1.0.0",
"reselect": "^2.0.1",
"scriptjs": "^2.5.8",
"style-loader": "^0.13.0",
"tinycolor2": "^1.1.2",
"webpack-merge": "^0.2.0"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/babel"
],
"setupEnvScriptFile": "<rootDir>/testing-global-setup.js",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [
"<rootDir>/app"
],
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6",
"jsx"
],
"verbose": true
},
"esLintConfig": {
"parser": "babel-eslint"
},
"engines": {
"node": "0.10.31"
}
}