forked from majickdave/react-tetris-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 948 Bytes
/
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
{
"name": "react-sudoku-game",
"version": "1.0.0",
"description": "A sudoku web game packed with user-friendly features. It is built with React + Next.js",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export"
},
"author": "",
"license": "ISC",
"dependencies": {
"color": "^3.0.0",
"immutable": "4.0.0-rc.9",
"next": "^5.0.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-input-range": "^1.3.0",
"react-popover": "^0.5.4",
"sw-precache-webpack-plugin": "^0.11.4"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-inline-react-svg": "^0.5.2",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0"
}
}