-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
73 lines (73 loc) · 2.09 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
67
68
69
70
71
72
73
{
"name": "react-solitair",
"version": "0.0.1",
"description": "A solitair game with react",
"main": "lib/index.js",
"scripts": {
"build": "export NODE_ENV=production && webpack --config ./webpack/webpack.config.prod.js",
"test": "export NODE_PATH=$PWD/src; echo $NODE_PATH; mocha --compilers js:./src/tests/compiler.js ./src/tests/*.spec.js",
"lint": "eslint src",
"start": "node ./server.js",
"start:prod": "node ./server.prod.js",
"prepublish": "npm run lint && npm run test"
},
"keywords": [
"react",
"redux",
"es2015",
"webpack",
"sass-node",
"mocha"
],
"author": "",
"license": "ISC",
"dependencies": {
"babel": "^6.0.15",
"babel-core": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-polyfill": "^6.5.0",
"css-loader": "^0.22.0",
"file-loader": "^0.8.5",
"node-sass": "^3.4.1",
"postcss-modules-extract-imports": "^1.0.0",
"postcss-modules-scope": "^1.0.0",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-redux": "^4.0.0",
"react-tap-event-plugin": "^0.2.1",
"redux": "^3.0.4",
"redux-undo": "^0.5.0",
"sass": "^0.5.0",
"sass-loader": "^3.1.1",
"style-loader": "^0.13.0",
"unexpected-react": "^0.3.0",
"url-loader": "^0.5.7"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.2",
"css-modules-require-hook": "^2.0.2",
"eslint": "^1.10.3",
"eslint-config-semistandard": "^5.0.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-react": "^3.11.3",
"eslint-plugin-standard": "^1.3.1",
"jsdom": "^7.0.2",
"mocha": "^2.3.4",
"react-addons-test-utils": "^0.14.2",
"react-tools": "^0.13.3",
"redux-devtools": "^2.1.5",
"redux-logger": "^2.0.4",
"redux-thunk": "^1.0.0",
"source-map": "^0.5.3",
"unexpected": "^10.2.0",
"webpack": "^1.12.3",
"webpack-dev-server": "^1.12.1"
},
"repository": {
"type": "git",
"url": "https://github.com/pl12133/react-solitaire.git"
}
}