-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "diary",
"version": "0.1.0",
"description": "Track of everything in your life",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf gh-pages/*",
"build": "npm run build:dev",
"prebuild:dev": "concurrently \"npm run clean\" \"npm run compile\"",
"build:dev": "webpack --config webpack/dev.config.js --progress --profile --colors --display-error-details --display-cached --watch",
"prebuild:prod": "concurrently \"npm run clean\" \"npm run compile:prod\"",
"build:prod": "webpack --config webpack/prod.config.js --progress --profile --colors --display-error-details --display-cached --bail",
"postbuild:prod": "echo 'diary.apporz.com' > gh-pages/CNAME",
"dev": "concurrently \"npm run clean\" \"npm run compile\" \"npm run dev:server\"",
"dev:server": "webpack-dev-server --config webpack/dev.config.js --content-base .",
"compile": "npm run compile:dev",
"compile:dev": "node bin/bootstrap.js",
"compile:prod": "NODE_ENV=production node bin/bootstrap.js -f",
"deploy": "NODE_ENV=production node bin/deploy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micooz/diary.git"
},
"keywords": [
"diary",
"tech",
"daily",
"notes",
"news"
],
"author": {
"name": "Micooz",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/micooz/diary/issues"
},
"homepage": "https://github.com/micooz/diary#readme",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"concurrently": "^3.1.0",
"css-loader": "^0.25.0",
"cssnano": "^3.8.0",
"gh-pages": "^0.11.0",
"piping": "^0.3.2",
"postcss": "^5.2.4",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^1.0.0",
"rimraf": "^2.5.4",
"serialize-javascript": "^1.3.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "^0.14.1"
},
"dependencies": {
"highlight.js": "^9.7.0",
"marked": "^0.3.6",
"moment": "^2.15.2",
"pikaday": "^1.4.0",
"react": "^15.3.2",
"react-dom": "^15.3.1",
"react-router": "^2.8.1",
"superagent": "^2.3.0"
}
}