-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1019 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1019 Bytes
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
{
"name": "memory",
"version": "1.0.0",
"description": "A terminal GUI-based memory game",
"main": "run.js",
"author": "Daniel Tao",
"scripts": {
"play": "node run.js"
},
"dependencies": {
"blessed": "^0.1.81",
"react-blessed": "^0.6.1",
"lodash": "^4.x.x"
},
"peerDependencies": {
"react": "^16.8.0",
"react-devtools-core": "^3.0.0",
"ws": "^7.1.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"invariant": "^2.2.0",
"neo-blessed": "^0.2.0",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.0"
}
}