forked from teacherfund/TeacherFund_next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "create-next-example-app",
"scripts": {
"now-build": "next build && next export -o dist",
"dev": "next -p 3001",
"build": "next build",
"start": "next start",
"fix": "standard --fix",
"lint": "standard",
"test": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@zeit/next-sass": "^1.0.1",
"dotenv-webpack": "^1.7.0",
"isomorphic-fetch": "^2.2.1",
"next": "^7.0.3",
"node-fetch": "^2.5.0",
"node-sass": "^4.12.0",
"nookies": "^2.0.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-google-maps": "^9.4.5",
"react-id-swiper": "^1.6.9",
"react-motion-drawer": "^3.1.0",
"react-router-dom": "^4.3.1",
"react-stripe-elements": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"dotenv": "^6.2.0",
"husky": "^1.3.1",
"redux-devtools-extension": "^2.13.8",
"standard": "^12.0.1",
"tachyons-sass": "^4.9.5"
},
"standard": {
"parser": "babel-eslint"
}
}