-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.96 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "blocchi-puzzle",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/gibbok/blocchi-puzzle.git"
},
"keywords": [],
"author": "GibboK",
"license": "MIT",
"bugs": {
"url": "https://github.com/gibbok/blocchi-puzzle/issues"
},
"homepage": "https://github.com/gibbok/blocchi-puzzle#readme",
"scripts": {
"clean": "shx rm -rf build && shx rm -rf dist && shx rm -rf .cache && shx rm -rf .out",
"check": "npm run tsc && npm run lint && npm run test",
"deploy": "gh-pages -d build",
"build-deploy": "npm run check && npm run storybook:build && npm run game:build:prod && npm run deploy",
"game:build:prod": "tsc && parcel build src/index.html --no-source-maps --out-dir build/game --public-url ./",
"lint:fix": "tsc & eslint './src/**/*.{js,ts,tsx}' --fix & prettier './src/**/*.{js,ts,tsx}' --write",
"lint": "tsc & eslint './src/**/*.{js,ts,tsx}' & prettier './src/**/*.{js,ts,tsx}' --check",
"start:build:local": "http-server ./build/game",
"start": "tsc && parcel src/index.html --no-source-maps",
"storybook:build:local": "http-server -p 8080 build/storybook",
"storybook:build": "build-storybook -c .storybook -o build/storybook",
"storybook": "start-storybook -p 6006",
"test:visual:approve": "loki approve",
"test:visual": "loki test --port 6006",
"test:watch": "tsc && jest --watch --coverage false",
"test": "tsc && jest --coverage true",
"tsc:watch": "tsc --watch --pretty",
"tsc": "tsc",
"cy:open": "cypress open",
"cy:run": "CYPRESS_BASE_URL=http://127.0.0.1:8080 cypress run --headless --browser chrome",
"cy:ci": "start-server-and-test start:build:local 8080 cy:run",
"cy:verify": "cypress verify",
"loki:ci": "npm run storybook:build && loki --requireReference --reactUri file:./build/storybook"
},
"dependencies": {
"@reduxjs/toolkit": "^1.3.6",
"@styled-icons/material": "^10.0.0",
"@types/throttle-debounce": "^2.1.0",
"detect-browser": "^5.1.1",
"fp-ts": "^2.6.2",
"gsap": "^3.2.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-gsap": "^2.2.1",
"react-redux": "^7.2.0",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"screenfull": "^5.0.2",
"sinon": "^9.0.2",
"styled-components": "^5.1.1",
"styled-normalize": "^8.0.7",
"throttle-debounce": "^2.1.0",
"typeface-oleo-script": "0.0.72"
},
"devDependencies": {
"@bahmutov/add-typescript-to-cypress": "^2.1.2",
"@storybook/addon-actions": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/storybook-deployer": "^2.8.6",
"@storybook/theming": "^5.3.19",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-test-renderer": "^16.9.2",
"@types/react-transition-group": "^4.4.0",
"@types/redux-mock-store": "^1.0.2",
"@types/screenfull": "^4.1.0",
"@types/sinon": "^9.0.4",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"awesome-typescript-loader": "^5.2.1",
"cypress": "^4.8.0",
"depcheck": "^0.9.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"gh-pages": "^3.0.0",
"http-server": "^0.12.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"loki": "^0.20.3",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"redux-mock-store": "^1.5.4",
"shx": "^0.3.2",
"start-server-and-test": "^1.11.0",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.docker",
"width": 1366,
"height": 768,
"deviceScaleFactor": 1,
"mobile": false
}
}
}
}