This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
forked from jeremybarbet/next-classnames-test
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.86 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
66
67
68
69
70
{
"name": "ueno-next-starter",
"description": "Opinionated Next starter by Ueno",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"next",
"starter",
"react",
"typescript",
"next-starter",
"nextjs",
"ueno"
],
"contributors": [
"Birkir Gudjonsson <birkir.gudjonsson@gmail.com>",
"Jérémy Barbet <jeremgraph@gmail.com>"
],
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "node build/index.js",
"lint": "npm run tslint && npm run stylelint",
"tslint": "tslint --fix 'src/**/*.{ts,tsx}' -p .",
"stylelint": "stylelint 'src/**/*.scss' --syntax scss"
},
"dependencies": {
"@zeit/next-sass": "1.0.1",
"@zeit/next-typescript": "1.1.1",
"dotenv": "6.2.0",
"express": "4.16.4",
"gsap": "2.1.2",
"gsap-tools": "1.0.9",
"lodash": "4.17.11",
"next": "8.0.3",
"next-compose-plugins": "2.1.1",
"next-fonts": "0.17.0",
"next-images": "1.1.0",
"next-react-svg": "1.0.0",
"react": "16.8.4",
"react-dom": "16.8.4",
"react-helmet": "5.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.3.0",
"@types/express": "4.16.1",
"@types/gsap": "1.20.2",
"@types/lodash": "4.14.122",
"@types/next": "8.0.1",
"@types/node": "11.10.4",
"@types/react": "16.8.6",
"@types/react-dom": "16.8.2",
"@types/react-helmet": "5.0.8",
"@ueno/stylelint-config": "1.1.2",
"@ueno/tslint-config": "1.0.5",
"autoprefixer": "9.4.10",
"classnames-loader": "2.1.0",
"cross-env": "5.2.0",
"next-classnames-loader": "1.0.3",
"node-sass": "4.11.0",
"nodemon": "1.18.10",
"postcss-csso": "3.0.0",
"stylelint": "9.10.1",
"svg-react-loader": "0.4.6",
"ts-node": "8.0.2",
"tslint": "5.13.1",
"tslint-react": "3.6.0",
"typescript": "3.3.3333"
}
}