-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.88 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
{
"name": "next-boilerplate-basic",
"version": "1.0.0",
"description": "Basic frontend-only template for next.js project. Counts with possibility to export to static files.",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"generate-sass-theme-variables": "node utils/json-to-sass-config-vars.js",
"start-dev": "npm run generate-sass-theme-variables && npm run dev",
"analyze": "SET \"ANALYZE=1\" && next build",
"eslint": "node node_modules/eslint/bin/eslint.js ./**/*.js",
"sass-lint": "sass-lint -v -q",
"flow": "flow",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/elliason/basic-frontend-next-boilerplate.git"
},
"keywords": [
"boilerplate",
"next.js",
"react.js"
],
"author": "Elias Ondrej",
"license": "ISC",
"homepage": "https://bitbucket.org/elliason/basic-frontend-next-boilerplate#readme",
"dependencies": {
"autoprefixer": "^7.2.6",
"babel-cli": "^6.26.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-wrap-in-js": "^1.1.1",
"babel-preset-flow": "^6.23.0",
"glob": "^7.1.2",
"json-sass": "^1.3.5",
"lodash": "^4.17.10",
"next": "^5.1.0",
"node-sass": "^4.9.0",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^2.1.4",
"raw-loader": "^0.5.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"sass-loader": "^6.0.7",
"styled-jsx": "^2.2.6",
"webpack-bundle-analyzer": "^2.11.1"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"eslint": "^4.12.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.60.0",
"jest": "^21.2.1",
"sass-lint": "^1.12.1"
}
}