-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "sakhroart-webapp",
"version": "1.0.0",
"main": "server",
"author": "Sava-Danylo Sakhro",
"license": "MIT",
"private": true,
"scripts": {
"dev": "node server",
"build": "next build src",
"start": "NODE_ENV=production node server",
"export": "yarn build && next export src",
"deploy:hosting": "firebase deploy --only hosting",
"lint": "tslint -c tslint.json 'src/**/*.ts{,x}' 'server/**/*.ts{,x}'",
"lint:fix": "tslint -c tslint.json 'src/**/*.ts{,x}' 'server/**/*.ts{,x}' --fix --format verbose"
},
"dependencies": {
"@7ninjas/scss-mixins": "^1.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"classnames": "^2.2.6",
"debounce": "^1.2.0",
"express": "^4.16.4",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^6.0.0",
"imagemin-svgo": "^7.0.0",
"next": "^8.0.3",
"next-compose-plugins": "^2.1.1",
"next-i18next": "^0.36.5",
"next-optimized-images": "^2.4.0",
"node-sass": "^4.11.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-id-swiper": "^1.6.9",
"webp-loader": "^0.4.0"
},
"devDependencies": {
"@types/next": "^8.0.3",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-inline-react-svg": "^1.0.1",
"tslint": "^5.14.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.4000"
}
}