-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.79 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
{
"name": "divide-and-concur",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-html": "babel-node build-html.js",
"deploy": "npm run build-html && parcel build index.html --no-cache --out-dir build/ --public-url /",
"precommit": "npm run fixlint && npm run node:test",
"start": "npm run build-html && export DEV=1 && parcel index.html",
"dev": "export DEV=1 && npm run build-html &&parcel serve index.html",
"lint:ui": "eslint src/ui/**/*.jsx",
"lint": "eslint src/ tests/",
"fixlint": "eslint src/ tests/ --fix",
"node:test": "mocha --require babel-core/register tests/**",
"test": "npm run lint && npm run node:test"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-plugin-inline-json": "1.2.2",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"browserslist": "3.2.6",
"chai": "4.1.2",
"chalk": "1.1.3",
"chinese-to-pinyin": "0.1.6",
"eslint": "4.18.2",
"eslint-config-node-services": "2.2.5",
"eslint-config-standard-jsx": "4.0.2",
"eslint-config-wikimedia": "0.5.0",
"eslint-plugin-jsdoc": "3.3.1",
"eslint-plugin-json": "1.2.0",
"eslint-plugin-react": "7.6.1",
"hanzi": "2.1.0",
"html-to-text": "3.3.0",
"husky": "0.14.3",
"isomorphic-fetch": "2.2.1",
"less": "3.0.1",
"mocha": "6.2.2",
"parcel-bundler": "1.12.4",
"parcel-plugin-sw-precache": "1.1.1",
"preact": "8.2.6",
"preact-jsx-chai": "2.2.1",
"preact-redux": "2.0.3",
"preact-render-to-string": "3.7.0",
"prompt": "1.0.0",
"redux": "3.7.2",
"redux-thunk": "2.2.0",
"sinon": "4.5.0"
}
}