-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.9 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
{
"name": "2048",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist/",
"build:watch": "webpack --progress --colors --watch",
"build:server": "webpack --progress --colors --config webpack.server.config.js",
"build:client": "webpack --progress --colors --config webpack.client.config.js",
"build": "npm run build:server && npm run build:client",
"dev": "webpack-dev-server --progress --colors --config webpack.client.config.js",
"start": "dist/server",
"test": "ava"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.1",
"color": "1.0.3",
"express": "4.15.2",
"isomorphic-fetch": "2.2.1",
"lowdb": "0.16.0",
"pg": "6.1.5",
"react": "15.4.2",
"react-addons": "0.9.1-deprecated",
"react-addons-css-transition-group": "15.4.2",
"react-dom": "15.4.2",
"react-motion": "0.4.7",
"react-redux": "5.0.3",
"react-swipeable": "^3.9.2",
"redux-saga": "0.14.3",
"styled-components": "1.4.4"
},
"devDependencies": {
"@types/body-parser": "^1.16.3",
"@types/chai": "3.4.35",
"@types/color": "1.0.0",
"@types/express": "4.0.35",
"@types/isomorphic-fetch": "0.0.33",
"@types/lowdb": "0.15.0",
"@types/mocha": "2.2.40",
"@types/node": "7.0.12",
"@types/pg": "6.1.38",
"@types/react": "15.0.16",
"@types/react-addons-css-transition-group": "15.0.1",
"@types/react-dom": "0.14.23",
"@types/react-motion": "0.0.21",
"@types/react-redux": "4.4.37",
"@types/react-swipeable": "^3.3.7",
"ava": "0.18.2",
"awesome-typescript-loader": "3.1.2",
"chai": "3.5.0",
"copy-webpack-plugin": "4.0.1",
"mocha": "3.2.0",
"ts-loader": "^2.0.3",
"typescript": "2.2.1",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.2"
},
"ava": {
"files": [
"src/**/*.spec.js"
]
}
}