-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.77 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
{
"name": "folckphoto",
"version": "1.0.0",
"description": "Folck Photo",
"main": "index.js",
"scripts": {
"dev": "next -p 7777",
"build": "next build && next export",
"start": "next start -p $PORT",
"test": "SET NODE_ENV=test&& jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZSteiger/folckphoto.git"
},
"author": "Zachary Steiger",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZSteiger/folckphoto/issues"
},
"homepage": "https://github.com/ZSteiger/folckphoto#readme",
"dependencies": {
"acorn": "^8.0.4",
"babel-core": "^6.26.3",
"babel-plugin-styled-components": "^1.12.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"next": "^10.0.4",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-adopt": "^0.6.0",
"react-dom": "^17.0.1",
"react-images": "^1.1.7",
"react-photo-gallery": "^8.0.0",
"react-transition-group": "^4.4.1",
"styled-components": "^5.2.1",
"waait": "^1.0.4"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^1.1.5",
"babel-plugin-module-resolver": "^4.1.0",
"casual": "^1.6.0",
"enzyme-to-json": "^3.3.5"
},
"babel": {
"env": {
"development": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
]
]
},
"production": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
]
]
}
}
}
}