forked from qntm/hatetris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "hatetris",
"version": "1.0.3",
"description": "Tetris which always gives you the worst piece",
"homepage": "https://github.com/qntm/hatetris",
"repository": {
"type": "git",
"url": "git://github.com/qntm/hatetris.git"
},
"main": "index.js",
"scripts": {
"build": "webpack",
"pretest": "eslint src --ext .ts,.tsx",
"test": "jest",
"test-built": "start-server-and-test \"node cypress/server.js\" http://localhost:3000/dist/hatetris.html \"cypress run\""
},
"keywords": [
"tetris"
],
"author": "qntm",
"license": "MIT",
"bugs": {
"url": "https://github.com/qntm/hatetris/issues"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.12.1",
"@types/enzyme": "^3.10.7",
"@types/jest": "^26.0.14",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-loader": "^8.0.6",
"base2048": "^1.0.4",
"base65536": "^3.0.3",
"classnames": "^2.2.6",
"css-loader": "^5.0.0",
"cypress": "^7.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.12.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.1",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"start-server-and-test": "^1.11.3",
"ts-loader": "^9.1.1",
"typescript": "^4.0.3",
"webpack": "^5.2.0",
"webpack-cli": "^4.0.0"
}
}