-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "anki-apkg-export-app",
"version": "0.0.0",
"main": "index.js",
"dependencies": {
"anki-apkg-export": "^1.0.1",
"filesaverjs": "^0.2.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"webpackman": "^0.5.0"
},
"devDependencies": {
"ava": "^0.13.0",
"babel-eslint": "^5.0.0-beta9",
"babel-plugin-transform-runtime": "~6.6.0",
"babel-preset-es2015": "~6.6.0",
"babel-preset-react": "~6.5.0",
"babel-preset-react-hmre": "~1.1.1",
"babel-preset-stage-0": "~6.5.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.14.0",
"husky": "^0.11.3",
"jsdom": "^8.2.0",
"raw-loader": "^0.5.1",
"script-loader": "^0.6.1",
"webpackman": "^0.5.0"
},
"author": "ewnd9 <[email protected]>",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ewnd9/anki-apkg-export-app.git"
},
"scripts": {
"build": "rm -rf dist && NODE_ENV=production wbuild --x-vendors=react --x-public-path=\"/anki-apkg-export-app/\"",
"lint": "eslint src/**/*.js",
"prepush": "npm run lint && npm test",
"start": "wserve",
"test": "ava",
"test:watch": "npm run test -- --watch"
}
}