-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.26 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
{
"name": "minesweeper-react-redux",
"version": "1.0.0",
"description": "Minesweeper Remake with React/Redux",
"main": "index.js",
"homepage": "https://john123yu.github.io/MinesweeperReactRedux/",
"repository": "[email protected]:John123Yu/MinesweeperReactRedux.git",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch",
"build": "webpack -p --define process.env.NODE_ENV='\"production\"' --progress --colors",
"predeploy": "npm run build",
"deploy": "aws s3 sync build/ s3://minesweeper-react-redux"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"gh-pages": "^2.0.1",
"webpack": "^1.12.9",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"babel-preset-stage-1": "^6.1.18",
"classnames": "^2.2.6",
"lodash": ">=4.17.11",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-undo": "^1.0.0-beta9-9-7"
}
}