-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
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
{
"name": "cube2d",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "parcel serve src/index.html --open",
"build": "parcel build src/index.html --public-url . --no-source-maps",
"lint": "eslint src/**/*.[tj]s",
"lint:fix": "yarn lint --fix",
"clean": "rm -rf dist .cache",
"readme": "cp src/assets/manual.md readme.md"
},
"author": "Milesq",
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.14.5",
"navigo": "^7.1.2",
"normalize.css": "^8.0.1",
"sweetalert2": "^8.18.5"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@fortawesome/fontawesome-free": "^5.11.2",
"@types/node": "^12.11.2",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"marked": "^0.7.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.18.2",
"sass": "^1.23.0",
"typescript": "^3.6.4"
}
}