-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
{
"name": "@dougrich/conscripter",
"version": "0.3.1",
"description": "Static site that generates functional open type font files for conlang scripts from SVG using substitution",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --require @babel/register \"./state/**/?(*.)spec.js\"",
"dev": "next",
"deploy": "npm run export && touch out/.nojekyll && echo 'Publishing...' && gh-pages -d out -t",
"export": "next build && next export",
"build": "next build",
"start": "next start",
"lint": "standard",
"help": "gh-pages --help"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dougrich/conscripter.git"
},
"author": "@dougrich",
"license": "MIT",
"bugs": {
"url": "https://github.com/dougrich/conscripter/issues"
},
"homepage": "https://github.com/dougrich/conscripter#readme",
"devDependencies": {
"chai": "^4.2.0",
"cross-fetch": "^3.0.5",
"gh-pages": "^2.0.1",
"mocha": "^6.2.1",
"standard": "^16.0.3",
"svg-transform-parser": "0.0.1"
},
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/register": "^7.4.0",
"classnames": "^2.2.6",
"msgpack-lite": "^0.1.26",
"next": "^10.1.3",
"node-sass": "^4.12.0",
"opentype.js": "^0.11.0",
"parse5": "^5.1.0",
"raw-loader": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-markdown": "^4.0.6",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"slugify": "^1.3.4",
"svg-arc-to-cubic-bezier": "^3.1.3",
"svg-path-parser": "^1.1.0"
},
"standard": {
"globals": [
"BASE_LINK",
"React",
"localStorage"
],
"env": [
"mocha"
]
}
}