-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·139 lines (139 loc) · 3.99 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "adhdfps",
"version": "1.0.0",
"description": "A 3D FPS with online nultiplayer, built completely in JavaScript.",
"scripts": {
"buildBAK": "webpack --config webpack.config.prod.js --colors",
"dev": "webpack-dev-server --open --config webpack.config.dev.js --watch --colors",
"start": "concurrently -k -r -s first \"npm run test:watch\" \"npm run open:src\" \"npm run lint:watch\"",
"open:src": "babel-node tools/srcServer.js",
"open:dist": "babel-node tools/distServer.js",
"open:prod": "babel-node tools/prodServer.js",
"lint": "esw webpack.config.* src tools --color",
"lint:watch": "npm run lint -- --watch",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "rimraf ./dist",
"build:local": "babel-node tools/build.js && npm run open:dist",
"build": "babel-node tools/build.js && npm run open:prod",
"prod": "babel-node tools/build.js && pm2 start --interpreter babel-node tools/prodServer.js --name adhdfps",
"test": "jest",
"test:CI": "babel-node tools/testCi.js",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaneTheory/ADHDFPS.git"
},
"keywords": [
"adhdfps",
"branden dane",
"danetheory",
"es6",
"javascript"
],
"author": "danetheory",
"license": "MIT",
"bugs": {
"url": "https://github.com/danetheory/ADHDFPS/issues"
},
"homepage": "https://github.com/danetheory/ADHDFPS#readme",
"devDependencies": {
"autoprefixer": "7.1.4",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.1",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.6",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"browser-sync": "2.18.12",
"chalk": "2.0.1",
"concurrently": "3.5.0",
"connect-history-api-fallback": "1.3.0",
"copy-webpack-plugin": "4.5.1",
"coveralls": "2.13.1",
"css-loader": "0.28.7",
"enzyme": "3.0.0",
"enzyme-adapter-react-16": "1.0.0",
"eslint": "4.2.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-react": "7.3.0",
"eslint-watch": "3.1.2",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "1.1.11",
"hard-source-webpack-plugin": "0.6.4",
"history": "4.6.0",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "20.0.4",
"jest-cli": "20.0.4",
"json-loader": "0.5.4",
"mockdate": "2.0.1",
"node": "8.9.4",
"node-sass": "4.5.3",
"opn-cli": "3.1.0",
"postcss-loader": "2.0.6",
"prompt": "1.0.0",
"prop-types": "15.5.10",
"raf": "3.3.2",
"react-hot-loader": "4.0.1",
"react-test-renderer": "16.0.0",
"redux-immutable-state-invariant": "2.0.0",
"redux-mock-store": "1.3.0",
"replace": "0.3.0",
"rimraf": "2.6.1",
"sass-loader": "6.0.6",
"style-loader": "0.21.0",
"url-loader": "1.0.1",
"webpack": "4.6.0",
"webpack-bundle-analyzer": "2.11.1",
"webpack-dev-middleware": "3.1.3",
"webpack-hot-middleware": "2.22.1",
"webpack-md5-hash": "0.0.6"
},
"babel": {
"env": {
"development": {
"presets": [
"env",
"react",
"stage-1"
]
},
"production": {
"presets": [
[
"env",
{
"es2015": {
"modules": false
},
"targets": {
"ie": 9,
"uglify": true
}
}
],
"env",
"stage-1"
],
"plugins": [
"react-hot-loader/babel",
"transform-react-constant-elements",
"transform-react-remove-prop-types"
]
},
"test": {
"presets": [
"env",
"react",
"stage-1"
]
}
}
}
}