-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.56 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "next-template",
"version": "0.1.2",
"private": false,
"license": "ISC",
"scripts": {
"_default:section": "This section is the default one for a next project",
"dev": "npm rebuild node-sass && next dev",
"build": "next build",
"start": "next start",
"_clean:section": "This section is here to help you clan your repo",
"clean:modules": "rm -rf node_modules yarn.lock >> .logs/success/clean.log 2>> .logs/errors/clean.log",
"clean:next": "rm -rf .next >> .logs/success/clean.log 2>> .logs/errors/clean.log",
"clean": "yarn run clean:modules ; yarn run clean:next",
"_use:section": "The purpose of this section is to change the management of the packages.",
"use:npm": "yarn run clean:modules ; bash .scripts/use/use.sh npm",
"use:yarn": "npm run clean:modules ; bash .scripts/use/use.sh yarn",
"use:current": "bash .scripts/use/current.sh yarn",
"_docker:section": "This section contains Docker scripts",
"docker:build": "docker build .",
"docker:stop": "docker stop front >> .logs/success/docker.log 2>> .logs/errors/docker.log",
"docker:remove": "docker rm front >> .logs/success/docker.log 2>> .logs/errors/docker.log",
"docker:clean": "yarn run docker:stop ; yarn run docker:remove",
"docker:run:dev": "docker-compose up front",
"docker:run:prod": "docker-compose up -d front",
"_mode:section": "In this section, prepare you environment for a specific mode",
"mode:prod": "bash .scripts/mode/mode.sh prod yarn",
"mode:dev": "bash .scripts/mode/mode.sh dev yarn"
},
"dependencies": {
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"bootstrap": "4.1.3",
"css-loader": "^3.5.3",
"ionicons": "4.5.1",
"jquery": "^3.5.1",
"js-cookie": "^2.2.1",
"next": "9.4.2",
"next-compose-plugins": "^2.2.0",
"next-images": "^1.4.0",
"node-sass": "^4.14.1",
"notistack": "^0.9.16",
"postcss-loader": "^3.0.0",
"profile-picture": "git+https://github.com/dsalvagni/react-profile-picture.git",
"react": "^16.13.1",
"react-avatar-edit": "^0.8.3",
"react-bootstrap": "^1.0.1",
"react-bootstrap-table": "4.3.1",
"react-dom": "16.13.1",
"react-rounded-image": "^2.0.2",
"reactstrap": "6.5.0",
"sass": "^1.26.7",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0"
},
"devDependencies": {
"@types/node": "^14.0.13",
"typescript": "^3.9.5"
}
}