-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 967 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
{
"name": "lemoncode-parcel",
"version": "1.0.0",
"description": "Basic project with parcel configured as an exercise for the Lemoncode Front-End Master",
"main": "index.js",
"scripts": {
"start": "tsc --noEmit && rimraf dist && parcel ./src/index.html --open",
"build": "tsc --noEmit && rimraf dist && parcel ./src/index.html",
"build:prod": "tsc --noEmit && rimraf dist && parcel build ./src/index.html"
},
"keywords": [
"lemoncode",
"master",
"parcel",
"exercise"
],
"author": "Alicia Guardeño <alicia.guardenoalbertos@gmail.com> (https://github.com/firenz)",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.12.12",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"eslint": "^6.7.1",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.0",
"sass": "^1.23.7",
"typescript": "^3.7.2"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}