-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.79 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
{
"engines": {
"node": ">= 12.13"
},
"name": "df-designer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format:all": "prettier --write \"{components,cypress,lib,pages,static,store,types}/**/*.{js,ts,tsx}\"",
"dev": "next",
"build": "next build",
"start": "next start -p 3000",
"build:start": "cross-env yarn build && yarn start",
"now-build": "next build && next export -o dist",
"test": "jest",
"cy:run": "cypress run --record --browser chrome",
"cy:test": "start-server-and-test build:start http://localhost:3000 cy:run",
"cy:open": "cypress open",
"cy:dev": "start-server-and-test dev http://localhost:3000 cy:open",
"cy:prod": "start-server-and-test build:start http://localhost:3000 cy:open",
"export": "next export",
"lint": "eslint ./ --ext .ts,.tsx",
"lint:fix": "eslint ./ --fix --ext .ts,.tsx",
"tsc": "tsc --project ./tsconfig.json && tsc --project ./cypress/tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@cypress/webpack-preprocessor": "^4.1.1",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@inlet/react-pixi": "^1.1.11",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"babel-plugin-emotion": "^10.0.23",
"consolidated-events": "^2.0.2",
"core-js": "^3.6.0",
"cross-env": "^6.0.3",
"cypress": "^3.8.0",
"immer": "5.1.0",
"jest": "^25.0.0",
"keycode": "^2.2.0",
"lodash": "^4.17.15",
"next": "^9.1.6",
"next-redux-wrapper": "^4.0.1",
"pixi.js": "^5.2.0",
"pixi.js-legacy": "^5.2.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"seedrandom": "^3.0.5",
"styled-system": "^5.1.4",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@types/core-js": "^2.5.2",
"@types/jest": "^24.0.24",
"@types/lodash": "^4.14.149",
"@types/next-redux-wrapper": "^3.0.0",
"@types/node": "^12.12.21",
"@types/pixi.js": "^5.0.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/seedrandom": "^2.4.28",
"@types/styled-system": "^5.1.4",
"@types/webpack-env": "^1.14.1",
"@typescript-eslint/eslint-plugin": "2.12.0",
"@typescript-eslint/parser": "2.12.0",
"eslint": "^6.8.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"prettier": "1.19.1",
"start-server-and-test": "^1.10.6",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
}
}