This repository has been archived by the owner on Mar 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
90 lines (90 loc) · 2.8 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "next.js-starter-project",
"version": "1.0.0",
"description": "A next.js starter project.",
"keywords": [
"nextjs",
"react",
"node",
"sass",
"headless"
],
"homepage": "https://github.com/Apiki/next.js-starter-project#readme",
"repository": {
"type": "git",
"url": "https://github.com/Apiki/next.js-starter-project"
},
"bugs": {
"url": "https://github.com/Apiki/next.js-starter-project/issues"
},
"author": "Apiki Wordpress",
"license": "MIT",
"scripts": {
"dev": "node server.js",
"build": "next build src",
"start": "cross-env NODE_ENV=production PORT=3000 node server.js",
"test": "yarn test:unit",
"test:unit": "cross-env BABEL_ENV=test jest --coverage --no-cache",
"test:watch": "yarn test:unit -- --watch",
"lint": "yarn run lint:scripts && yarn run lint:styles",
"lint:scripts": "eslint ./src/**",
"lint:styles": "stylelint .src/**",
"lint:fix:scripts": "eslint --fix ./src/**",
"lint:fix:styles": "stylelint --fix ./src/**",
"dev:story": "start-storybook -p 6006 -c storybook",
"build:story": "cross-env NODE_ENV=production BABEL_ENV=production build-storybook -c storybook -o docs"
},
"dependencies": {
"chai": "^4.1.2",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"next": "7.0.2",
"next-routes": "^1.4.2",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-responsive": "^5.0.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@storybook/addon-knobs": "^3.4.10",
"@storybook/addon-options": "^3.4.10",
"@storybook/addon-viewport": "^3.4.10",
"@storybook/react": "^3.4.10",
"@zeit/next-sass": "^0.2.1-canary.2",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.1",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^2.0.0",
"import-glob": "^1.5.0",
"jest": "^23.4.2",
"node-sass": "^4.9.2",
"prismjs": "^1.15.0",
"react-element-to-jsx-string": "^14.0.1",
"react-test-renderer": "^16.4.2",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^1.3.3",
"sass-to-js": "^1.3.1",
"style-loader": "^0.21.0",
"stylelint": "^9.4.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"stylelint-z-index-value-constraint": "^1.0.0",
"url-loader": "^1.1.1",
"webpack": "^4.20.1"
}
}