-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "",
"version": "1.0.0",
"description": "An opinionated way to generate clean, marked-up text for the web. Input Markdown or plain text and get back semantic HTML with highly-tuned typographic details.",
"main": "main.js",
"scripts": {
"test": "jest",
"build": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development webpack-dev-server --open --inline & nodemon server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conorsexton/Typo.git"
},
"keywords": [
"typography",
"html",
"pre-processor"
],
"author": "Conor Sexton",
"license": "MIT",
"bugs": {
"url": "https://github.com/conorsexton/Spruce/issues"
},
"homepage": "https://github.com/conorsexton/Spruce#readme",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel": "^6.23.0",
"babel-loader": "^8.0.6",
"express": "^4.16.4",
"marked": "^0.6.2",
"nodemon": "^1.19.0",
"prismjs": "^1.16.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"babel-jest": "^24.8.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"webpack-dev-server": "^3.3.1"
}
}