This repository was archived by the owner on Mar 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.3 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.3 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
{
"name": "pool_madness",
"description": "pool_madness",
"version": "1.1.0",
"repository": "https://github.com/haruska/pool_madness",
"author": "Jason Haruska",
"license": "MIT",
"scripts": {
"start": "webpack --watch",
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"postinstall": "if [ \"$NODE_ENV\" = 'production' ]; then ./node_modules/.bin/webpack -p; else ./node_modules/.bin/webpack; fi"
},
"engines": {
"node": "6.5.0",
"npm": "3.10.3"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-react-relay": "^0.10.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-relay-plugin": "^0.11.0",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.16",
"enzyme": "^2.8.0",
"eslint": ">=2.0.0",
"file-loader": "^0.11.1",
"jest": "^19.0.2",
"jest-enzyme": "^3.0.0",
"js-cookie": "^2.1.4",
"js-md5": "^0.4.2",
"json-loader": "^0.5.4",
"lodash": "^4.17.2",
"marked": "^0.3.6",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"packageify": "^1.0.0",
"path": "^0.12.7",
"pluralize": "^4.0.0",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.5.2",
"react-addons-test-utils": "^15.4.2",
"react-async-script-loader": "^0.2.2",
"react-dom": "^15.4.1",
"react-relay": "^0.10.0",
"react-router": "^3.0.5",
"react-router-relay": "^0.13.5",
"reqwest": "^2.0.5",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"transform-loader": "^0.2.4",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"graphql": {
"file": "./schema.json"
},
"babel": {
"sourceMaps": "both",
"presets": [
"latest",
"react"
],
"plugins": [
"react-relay",
"transform-class-properties",
"transform-object-rest-spread"
]
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"app",
"node_modules"
],
"globals": [
"React$Element",
"requestAnimationFrame"
]
}
}