-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
92 lines (92 loc) · 2.51 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
91
92
{
"name": "rp2019",
"version": "1.0.0",
"description": "Reflections | Projections 2019 Website",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "next start",
"export": "next export",
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint ./components ./pages --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint ./components ./pages --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "NODE_ENV=production lint-staged"
}
},
"eslintIgnore": [
"next.config.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ReflectionsProjections/rp2019.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ReflectionsProjections/rp2019/issues"
},
"homepage": "https://github.com/ReflectionsProjections/rp2019#readme",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"acorn": "^6.1.1",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"core-js": "^3.1.3",
"express": "^4.16.4",
"jquery": "^3.4.1",
"moment": "^2.24.0",
"next": "7.0.2",
"next-routes": "^1.4.2",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "latest",
"react-bootstrap": "^1.0.0-beta.8",
"react-bootstrap-typeahead": "^3.4.6",
"react-device-detect": "^1.7.5",
"react-dom": "latest",
"react-ga": "^2.5.7",
"react-helmet": "^5.2.1",
"react-inlinesvg": "^0.8.4",
"react-masonry-component": "^6.2.1",
"react-motion": "^0.5.2",
"react-scroll": "^1.7.11",
"react-transition-group": "^2.0.0",
"react-twitter-widgets": "^1.7.1",
"semantic-ui-react": "^0.77.2",
"webpack": "4.20.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@storybook/addon-actions": "^5.1.3",
"@storybook/addon-links": "^5.1.3",
"@storybook/addons": "^5.1.3",
"@storybook/react": "^5.1.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0"
}
}