-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "SightWords",
"version": "0.1.0",
"description": "Sight Words app for memorizing common words to be able to read on sight one word at a time. Practice and save your progress as your children learn their sight words.",
"scripts": {
"build": "webpack --config webpack-prod.config.js --colors && npm run copyRedirects",
"dev": "webpack-dev-server --config webpack-dev.config.js --watch --colors",
"copyRedirects": "cpx ./src/_redirects ./dist"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": ""
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"semi": 2
}
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.9.0",
"cpx": "^1.5.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"fs-extra": "^4.0.0",
"html-webpack-plugin": "^2.17.0",
"node-sass": "^4.1.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-polyfill": "^6.9.0",
"hyperapp": "^0.9.3",
"hyperapp-router": "^0.2.2",
"milligram": "^1.3.0",
"shortid": "^2.2.8",
"whatwg-fetch": "^2.0.3"
}
}