forked from imshubhamsingh/15-puzzle
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "8puzzle",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --public-url ./",
"deploy": "npm run build && gh-pages -d dist"
},
"author": "Erik Demaine",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.17.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@parcel/config-default": "^2.0.0",
"@parcel/packager-raw-url": "^2.0.0",
"@parcel/transformer-raw": "^2.0.0",
"@parcel/transformer-sass": "^2.0.0",
"@parcel/transformer-webmanifest": "^2.0.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-styled-components": "^1.13.3",
"gh-pages": "^3.2.3",
"parcel": "^2.2.1",
"react-hot-loader": "^4.13.0",
"sass": "^1.49.7"
}
}