-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.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
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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "slides",
"version": "0.0.0",
"description": "SurviveJS slides",
"main": "index.js",
"private": true,
"scripts": {
"build": "node ./antwar.bootstrap.js build",
"build:ci": "start-server-and-test server http://localhost:4000 build",
"start": "node ./antwar.bootstrap.js develop",
"server": "node ./server",
"lint": "eslint . --ignore-path .gitignore --fix --ext .graphql",
"test": "npm run lint",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/survivejs/slides.git"
},
"lint-staged": {
"*.{graphql,js,jsx,json,md,css}": [
"prettier --write",
"git add"
]
},
"watch": {
"server": "server/**/*.*"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/survivejs/slides/issues"
},
"homepage": "https://github.com/survivejs/slides#readme",
"dependencies": {
"bluebird": "^3.5.3",
"classnames": "^2.2.6",
"cloudinary": "^1.13.2",
"dotenv": "^7.0.0",
"graphql-import": "^0.7.1",
"graphql-request": "^1.8.2",
"highlight.js": "^9.15.6",
"linaria": "^1.3.1",
"lodash": "^4.17.11",
"mermaid": "^8.0.0",
"polished": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-markdown": "^4.0.6",
"react-select": "^2.4.2",
"react-sidebar": "^3.0.2",
"scroll-into-view": "^1.9.5",
"simple-git": "^1.110.0",
"smooth-scroll-into-view-if-needed": "^1.1.23",
"window-or-global": "^1.0.1",
"yaml": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"antwar": "^0.29.5-alpha.0",
"antwar-interactive": "^0.29.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"core-js": "^2.6.5",
"css-loader": "^2.1.1",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"graphql-config": "^2.2.1",
"graphql-tag": "^2.10.1",
"graphql-yoga": "^1.17.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.5.0",
"npm-watch": "^0.6.0",
"prettier": "^1.16.4",
"raw-loader": "^2.0.0",
"require-dir": "^1.2.0",
"start-server-and-test": "^1.7.12",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}