-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.21 KB
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
{
"name": "crosscom",
"version": "1.0.0",
"description": "Open Source web application used to run the NETCOM ARMA III Platform.",
"main": "index.js",
"scripts": {
"typescript-build": "tsc -p . ",
"typescript-watch": "tsc -p . -w",
"react": "webpack",
"react-watch": "webpack -w",
"scss": "gulp build-styles",
"scss-watch": "gulp styles",
"images-copy": "gulp copy-images",
"images-watch": "gulp images",
"cluster-bomb": "concurrently \"npm run typescript-watch\" \"npm run react-watch\" \"npm run scss-watch\" \"npm run images-watch\""
},
"license": "CC-BY-ND-4.0",
"devDependencies": {
"awesome-typescript-loader": "^3.0.0-beta.17",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.16.0",
"concurrently": "^3.1.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-cssnano": "^2.1.2",
"gulp-sass": "^3.0.0",
"gulp-shorthand": "^1.1.0",
"gulp-sourcemaps": "^1.9.1",
"http-server": "^0.9.0",
"mocha": "^3.2.0",
"source-map-loader": "^0.1.5",
"typescript": "^2.1.4",
"typings": "^2.0.0",
"webpack": "^1.14.0"
},
"dependencies": {
"@types/bluebird": "^3.0.36",
"@types/jsonwebtoken": "^7.1.33",
"@types/lscache": "^1.0.29",
"@types/pug": "^2.0.3",
"@types/query-string": "^3.0.31",
"@types/react": "^0.14.55",
"@types/react-motion": "0.0.20",
"@types/react-router": "^2.0.41",
"apollo-client": "^0.5.25",
"axios": "^0.15.3",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"dataloader": "^1.2.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"graphql": "^0.7.0",
"graphql-server-express": "^0.4.3",
"graphql-subscriptions": "^0.2.2",
"graphql-tag": "^1.1.2",
"graphql-tools": "^0.8.4",
"history": "^4.5.0",
"jsonwebtoken": "^7.2.1",
"knex": "^0.12.6",
"lscache": "^1.0.7",
"pg": "^6.1.2",
"pug": "^2.0.0-beta6",
"query-string": "^4.2.3",
"react": "^15.4.1",
"react-apollo": "^0.7.2",
"react-dom": "^15.4.1",
"react-motion": "^0.4.7",
"react-onclickoutside": "^5.8.3",
"react-router": "^3.0.0",
"react-select": "^1.0.0-rc.2",
"underscore": "^1.8.3"
}
}