This repository was archived by the owner on Nov 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.55 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.55 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
{
"name": "app",
"version": "1.0.0",
"description": "front end app for my accounts",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --colors --hot --config ./webpack.config.js --port 9001 --host 0.0.0.0",
"build": "webpack --progress --colors --config ./webpack.config.js",
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js 'src/**/*spec.js'",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/spring2go/staffjoy.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
],
"plugins": [
"react-hot-loader/babel"
]
},
"bugs": {
"url": "https://github.com/spring2go/staffjoy/issues"
},
"homepage": "https://github.com/spring2go/staffjoy#readme",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.11.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"jsdom": "^9.4.1",
"json-loader": "^0.5.4",
"mocha": "^2.5.3",
"node-sass": "^4.13.0",
"react-addons-test-utils": "^15.2.1",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-cleanup-plugin": "^0.4.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"boron": "^0.2.3",
"classnames": "^2.2.5",
"eslint-import-resolver-webpack": "^0.8.1",
"lodash": "^4.14.1",
"moment": "^2.16.0",
"moment-timezone": "^0.5.35",
"normalizr": "^2.2.1",
"npm-zepto": "^1.1.7",
"raven-js": "^3.7.0",
"react": "^15.2.1",
"react-color": "2.11.1",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.2.1",
"react-mdl": "^1.7.2",
"react-moment-proptypes": "^1.2.0",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-form": "^6.1.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"whatwg-fetch": "^1.0.0"
}
}