-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.97 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "RedTetris",
"version": "0.0.0",
"description": "Tetris game",
"main": "index.js",
"repository": "git@github.com:Lcharvol/Red-Tetris.git",
"author": "Lcharvol <lcharvol@student.42.fr>",
"scripts": {
"test": "jest --colors",
"cli-prod": "webpack -p",
"cli-dev": "NODE_ENV=production webpack --progress --colors",
"srv-dev": "DEBUG=tetris:* babel-watch -w src src/server/index.js",
"srv-prod": "DEBUG=tetris:* babel src --out-dir dist"
},
"contributors": [
{
"name": "Lucas Charvolin",
"email": "lcharvol@student.42.fr",
"url": "https://github.com/Lcharvol"
}
],
"license": "MIT",
"dependencies": {
"@babel/core": "^7.0.0-beta.34",
"@babel/preset-env": "^7.0.0-beta.34",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-__coverage__": "^0.111111.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-watch": "^2.0.2",
"body-parser": "^1.18.3",
"debug": "^3.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"express": "^4.16.3",
"fs": "^0.0.1-security",
"jest-styled-components": "^5.0.1",
"multer": "^1.3.1",
"prop-types": "^15.6.0",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-event-listener": "^0.6.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-tap-event-plugin": "^3.0.3",
"react-toastr": "^3.0.0",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.2.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"styled-components": "^3.3.3",
"supertest": "^3.1.0",
"universal-fetch": "^1.0.0",
"url-parse": "^1.4.1",
"uuid": "^3.3.2",
"webpack": "^3.10.0",
"yield": "^0.0.6-8"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.34",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0-beta.34",
"@babel/register": "^7.0.0-beta.34",
"babel-core": "^6.0.20",
"babel-eslint": "^8.0.3",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-promise-to-bluebird": "^1.1.1",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"concurrently": "^3.5.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^23.4.2",
"nodemon": "^1.12.5",
"uglify-js-brunch": "^2.10.0"
},
"eslint": {
"root": true
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.js"
}
}