-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
38 lines (38 loc) · 1.42 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
{
"name": "coderwall",
"description": "Programming tips, tools, and projects from our developer community.",
"engines": {
"node": "6.4.0",
"npm": "3.10.3"
},
"scripts": {
"postinstall": "cd client && npm install",
"test": "rake test && npm run lint && npm run test:client",
"test:client": "(cd client && npm run test --silent)",
"lint": "(cd client && npm run lint --silent)",
"build:clean": "rm app/assets/webpack/*",
"build:production": "(cd client && npm run build:production --silent)",
"build:production:client": "(cd client && npm run build:production:client --silent)",
"build:production:server": "(cd client && npm run build:production:server --silent)",
"build:client": "(cd client && npm run build:client --silent)",
"build:server": "(cd client && npm run build:server --silent)",
"build:dev:client": "(cd client && npm run build:dev:client --silent)",
"build:dev:server": "(cd client && npm run build:dev:server --silent)",
"hot-assets": "(cd client && npm run hot-assets)",
"start": "(cd client && npm run start --silent)"
},
"repository": {
"type": "git",
"url": "https://github.com/coderwall/coderwall-next"
},
"author": "mdeiters",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/coderwall/coderwall-next/issues"
},
"homepage": "https://coderwall.com",
"cacheDirectories": [
"node_modules",
"client/node_modules"
]
}