-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
38
{
"name": "javascript-playground",
"version": "1.0.0",
"description": "Playground to show code snippets with no transpilation",
"keywords": [
"lemoncode",
"master",
"javascript",
"typescript",
"exercises"
],
"homepage": "https://github.com/Firenz/lemoncode-js-exercises#readme",
"bugs": {
"url": "https://github.com/Firenz/lemoncode-js-exercises/issues"
},
"license": "MIT",
"author": "Alicia Guardeño <alicia.guardenoalbertos@gmail.com> (https://github.com/firenz)",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/Firenz/lemoncode-js-exercises.git"
},
"scripts": {
"start": "tsc --noEmit && rimraf dist && parcel ./src/index.html --open",
"build": "tsc --noEmit && rimraf dist && parcel ./src/index.html"
},
"dependencies": {
"lodash.curry": "^4.1.1",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@types/node": "^12.12.14",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.0",
"sass": "^1.23.7",
"typescript": "^3.7.2"
}
}