-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "english-cards",
"version": "0.0.1",
"homepage": "https://d4rkr00t.github.io/english-cards/",
"devDependencies": {
"aik": "^0.16.1",
"babel-loader": "^6.2.5",
"cerebral": "^1.1.0",
"cerebral-module-devtools": "^0.7.2",
"cerebral-view-react": "^0.12.12",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.6.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-flowtype": "^2.11.4",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"glob": "^7.0.6",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-hammerjs": "^0.5.0",
"react-motion": "^0.4.5",
"uglify-js": "^2.7.3"
},
"scripts": {
"start": "aik src/index.js -r",
"build": "aik src/index.js -r --build docs --base \"/english-cards/\"",
"postbuild": "npm run copy:manifest && npm run copy:data && npm run copy:ico && npm run service-worker",
"copy:data": "cp ./data.json ./docs/",
"copy:manifest": "cp ./manifest.json ./docs/",
"copy:ico": "cp ./favicon.ico ./docs/",
"service-worker": "node ./service-worker/service-worker-generator.js"
},
"eslintConfig": {
"extends": "./node_modules/aik/lib/eslint-config.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}