-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
36
37
38
39
{
"name": "desenvolvedor-m3",
"version": "1.0.0",
"description": "Desafio da agencia m3 para novos colaboradores",
"main": "index.js",
"scripts": {
"start": "node_modules/.bin/cross-env SERVER_API=http://localhost:5000 npm-run-all --parallel dev server",
"start:gp": "npm-run-all --parallel dev server",
"dev": "gulp",
"server": "json-server ./db.json --port 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agenciam3/Desenvolvedor-M3.git"
},
"author": "Heraldo Ecard Roque Filho",
"license": "ISC",
"bugs": {
"url": "https://github.com/agenciam3/Desenvolvedor-M3/issues"
},
"homepage": "https://github.com/agenciam3/Desenvolvedor-M3#readme",
"devDependencies": {
"browser-sync": "^2.27.7",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"npm-run-all": "^4.1.5",
"sass": "^1.43.4",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.62.1"
},
"dependencies": {
"cross-env": "^7.0.3",
"json-server": "^0.17.0"
}
}