-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "mastermind",
"version": "1.1.0",
"description": "Mastermind classic game written in ReactJS, Redux and ImmutableJS",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js 'test/**/*.@(js|jsx)'",
"test:watch": "npm run test -- --watch",
"deploy": "NODE_ENV=production webpack -p --config webpack.prod.config.js"
},
"keywords": [],
"author": "Tamas Szabo",
"license": "MIT",
"babel": {
"presets": [
"es2015",
"react"
]
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chai": "^3.4.1",
"chai-immutable": "^1.5.3",
"jsdom": "^7.2.1",
"mocha": "^2.3.4",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"history": "^1.17.0",
"immutable": "^3.7.6",
"lodash": "^4.17.19",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.0.3",
"react-router": "^1.0.3",
"redux": "^3.0.5",
"redux-immutablejs": "0.0.8"
}
}