-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.5 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
{
"name": "cardkit",
"version": "0.0.1",
"description": "Card game stuff",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --progress --colors",
"build": "webpack --hot --progress --colors",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/lacker/cardkit.git"
},
"keywords": [
"cards"
],
"author": "Kevin Lacker",
"license": "MIT",
"bugs": {
"url": "https://github.com/lacker/cardkit/issues"
},
"devDependencies": {
"babel-core": "~5.5.6",
"babel-jest": "~5.3.0",
"babel-loader": "~5.1.4",
"classnames": "^2.1.3",
"file-loader": "^0.8.4",
"jest-cli": "~0.4.13",
"json-loader": "^0.5.2",
"node-libs-browser": "~0.5.2",
"react": "~0.13.3",
"react-hot-loader": "~1.2.7",
"react-router": "~0.13.3",
"webpack": "~1.9.10",
"webpack-dev-server": "~1.9.0"
},
"dependencies": {
"autoprefixer-core": "^5.2.1",
"babel": "^5.5.6",
"css-loader": "^0.14.5",
"csswring": "^3.0.5",
"loader-utils": "~0.2.10",
"lodash": "^3.10.1",
"node-sass": "^3.1.2",
"postcss-loader": "^0.5.0",
"react-animate": "^3.0.0",
"react-dnd": "^1.1.8",
"sass-loader": "^2.0.0",
"seedrandom": "^2.4.0",
"style-loader": "^0.12.3",
"ws": "~0.7.2"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
}
}